Hello Shahab,

I sometimes mess up with this too. If your bolt is sending to an other bolt, be sure to anchor the input to the output :

collector.emit(input, new Values(...));

If your bolt is in the end of the chain, then do not forget to ack it manually :
collector.ack(input);

Ack is built on a chain. When a bolt sends a new tuple, it should anchor (reference) the input to indicate that when output tuple will be acked, input tuple should be too.
http://storm.apache.org/releases/0.10.0/Guaranteeing-message-processing.html


Le 30/03/2016 09:10, shahab a écrit :
Hello,

I am using Kafka-Storm (0.10.0) spout in storm (0.9.4) topology and i noticed that I can not see the statistics of acked/failed tuples in the UI. is there any settings that I messed up with or this is just due to incompatibility between kafka-storm spout and storm?


best,
/Shahab

--
BR,
Aurelien

Reply via email to