From the wiki, i see that "The first is to set Config.TOPOLOGY_ACKERS
to 0、In this case, Storm will call the ack method on the spout
immediately after the spout emits a tuple. ", it means that spout will
call the method ack, but it will not track the tuple tree.
On Dec 28, 5:23 pm, Nathan Marz <
nathan.m...@gmail.com> wrote:
> Are you using an unreliable spout? (a spout that doesn't tag emitted tuples with a message id) In that case, tuple trees won't be tracked and spouts will never have ack called on them. This explanation is consistent with the numbers in your screenshot.
>
> On Dec 28, 2011, at 1:17 AM, Min Zhou <
coderp...@gmail.com> wrote:
>
>
>
>
>
>
>
> > Below is a instance of storm web ui. It surprises me the acked number of PrinterBolt is 594756340, and that number of the total topology is 0.
> > Can you explain it?
>
> > Topology stats
> > Window Emitted Transferred Complete latency (ms) Acked Failed
> > 10m 0s 1797746400 1280933240 0.000 0 0
> > 3h 0m 0s 1964840900 1370085360 0.000 0 0
> > 1d 0h 0m 0s 1964840900 1370085360 0.000 0 0
> > All time 1964840900 1370085360 0.000 0 0
> > Spouts (All time)
> > Id Parallelism Emitted Transferred Complete latency (ms) Acked Failed Last error
> > word 50 1370084860 1370085360 0.000 0 0
> > Bolts (All time)
> > Id Parallelism Emitted Transferred Process latency (ms) Acked Failed Last error
> > __acker 10 0 0 0.000 0 0
> > print 60 594756040 0 0.009 594756340 0
>
> > On Wed, Dec 28, 2011 at 3:58 PM, Nathan Marz <
nathan.m...@gmail.com> wrote:
> > The complete latency is the time from the spout emitting a tuple to that tuple being acked on the spout. So it tracks the time for the whole tuple tree to be processed.
>
> > If you dive into the spout component in the UI, you'll see that a lot of the emitted/transferred is on the __ack* stream. This is the spout communicating with the ackers which take care of tracking the tuple trees.
>