Re: Is it possible join another spou/bolt later to the topology?

2014-05-23 Thread Sajith
Hi Gosh, My concern is that I don't want to include all the dependencies required by the bulky bolt to the topology jar. Because that bolt will run in single node(I wrote a scheduler to guarantee that) in the cluster it will be not required to distribute the jar across the cluster. Actually, was

Is it possible join another spou/bolt later to the topology?

2014-05-22 Thread Sajith
Hi all, Is it possible for us to join another spout or a bolt (not an instance, but a separate one) later to the topology after topology being deployed. My requirement is to receive all the tuples processed by a storm cluster to a single bolt which developed on OSGi and many other dependencies.

Re: Is it possible join another spou/bolt later to the topology?

2014-05-22 Thread P Ghosh
Can you elaborate on what exactly you mean by join. You can have a bolt defined as part of topology which will load the other jar in the prepare() method call actual functional methods in the execute method. This way , you are dynamically loading the other jar into your storm topo...(which in my