Is there a way to figure out which bolt is at the end of the chain using the 
thrift api?

For instance, I have this topology:
TopologyBuilder builder = new TopologyBuilder();
builder.setSpout("Hello", new HelloWorldSpout(), 1);
builder.setBolt("World", new HelloWorldBolt(), 1).shuffleGrouping("Hello");
builder.setBolt("World2", new HelloWorldBolt(), 1).shuffleGrouping("World");

Is there a way to know that world2 is at the end of the chain?

Reply via email to