Re: Is there a way to find the details of the target bolt/bolts and the source bolt/bolts in topology.

2015-03-03 Thread Nathan Leung
You can have cycles in storm. As an example: Bolt A -> Bolt B Bolt B -> Bolt C Bolt B (non-default stream) -> Bolt A By using a different stream you can avoid infinite looping. On Tue, Mar 3, 2015 at 12:51 PM, Susheel Kumar Gadalay wrote: > You want to share some info with the parent bolt m

Re: Is there a way to find the details of the target bolt/bolts and the source bolt/bolts in topology.

2015-03-03 Thread Susheel Kumar Gadalay
You want to share some info with the parent bolt means you want to emit some tuples to the parent bolt. Will it not lead to cyclic. As far as I know it has to DAG (Directed Acyclic Graph). On 3/3/15, Ravali Kandur wrote: > Sure Vineet, > > I have a use case where I need to keep a track of the im

Re: Is there a way to find the details of the target bolt/bolts and the source bolt/bolts in topology.

2015-03-03 Thread Nathan Leung
In the initialize() method for your component you will receive a TopologyContext object reference from which you can access this information: https://nathanmarz.github.io/storm/doc/backtype/storm/task/TopologyContext.html On Tue, Mar 3, 2015 at 11:16 AM, Ravali Kandur wrote: > Sure Vineet, > >

Re: Is there a way to find the details of the target bolt/bolts and the source bolt/bolts in topology.

2015-03-03 Thread Ravali Kandur
Sure Vineet, I have a use case where I need to keep a track of the immediate parent of the bolt to convey some information regarding the messages received. For example, when I receive a message from BoltB to BoltC, once BoltC processes the message, it needs to share some information with BoltB wi

Re: Is there a way to find the details of the target bolt/bolts and the source bolt/bolts in topology.

2015-03-02 Thread Vineet Mishra
Hi, Could you elaborate your use case for that? On Mon, Mar 2, 2015 at 12:01 PM, Ravali Kandur wrote: > Hi, > > > > I was wondering if there is a way to know the details of the > preceding/succeeding bolts information programmatically. > > > > For example, in the image shown below, can I know t

Is there a way to find the details of the target bolt/bolts and the source bolt/bolts in topology.

2015-03-01 Thread Ravali Kandur
Hi, I was wondering if there is a way to know the details of the preceding/succeeding bolts information programmatically. For example, in the image shown below, can I know the information of Bolt B and Bolt D from Bolt D ? Any help is highly appreciated ! Regards, Ravali Ka