Hi,
I am trying to define a topology as following:
S : is a spout
A,B,C : are bolts
--> : means emitting message
S -->A
A -->B
B -->C
C -->A
I am declaring the Spouts and Bolts in the above order in my java code ,
first S, then A , B and finally C.
I am using globalGrouping("BoltName", StreamID) for collecting messages to
be collected by each bolt,
The problem is that I receive an error, while defining bolt "A" saying
"that subscribes from non-existent component [C]" .
I guess the error is happening because component "C" is not defined yet!
but what could be the solution to this?
best,
/Shahab