Mayur Shah
Mayur Shah

Reputation: 1019

What is difference between TridentTopologies and storm topologies?

I am not getting the good difference between trident topologies and storm topologies,while creating spout i am using BaseRichspout .I am using trident topologies object while creating topologies and its working

So ,some one help me to know a good difference between them

Upvotes: 0

Views: 226

Answers (1)

Joshua Martell
Joshua Martell

Reputation: 7212

Trident is an abstraction on top of Storm to provide exactly once processing. Storm uses Spouts, Bolts, and Sinks. Trident uses Functions, Filters, and States and transforms these into Bolts. If you're not sure you need Trident, I'd suggest you use Storm and not mix the two.

Upvotes: 1

Related Questions