Re: Naming Components In Trident Topology

2014-07-22 Thread Raphael Hsieh
t; I believe you can just call #name. E.g. persistentAggregate( ... >> ).name( "name" ) >> -- >> From: Justin Workman >> Sent: ‎6/‎25/‎2014 8:56 AM >> To: user@storm.incubator.apache.org >> Subject: Naming Components In

Re: Naming Components In Trident Topology

2014-06-26 Thread Justin Workman
/‎2014 8:56 AM > To: user@storm.incubator.apache.org > Subject: Naming Components In Trident Topology > > This is probably a silly question, that I am just overlooking the answer > to. We are playing with our first trident topology running under storm > 0.9.1. Is there a way to descriptively name

RE: Naming Components In Trident Topology

2014-06-25 Thread Sam
I believe you can just call #name. E.g. persistentAggregate( ... ).name( "name" ) -Original Message- From: "Justin Workman" Sent: ‎6/‎25/‎2014 8:56 AM To: "user@storm.incubator.apache.org" Subject: Naming Components In Trident Topology This is probably a

Re: Naming Components In Trident Topology

2014-06-25 Thread Cody A. Ray
There's a method on steam called name () which will let you do this. For example stream .each(...) .name("Transform") .parallelismHint(12) .groupBy(...) .persistent aggregate(...) .name("Aggregator") .parallelismHint(3); On Jun 25, 2014 10:56 AM, "Justin Workman" wrot

Naming Components In Trident Topology

2014-06-25 Thread Justin Workman
This is probably a silly question, that I am just overlooking the answer to. We are playing with our first trident topology running under storm 0.9.1. Is there a way to descriptively name the components so they are meaningful in the UI. Similar to how the components appear in the normal storm topol