what's difference between emitted and transferred?
2,166 views
Skip to first unread message
Jimmy Jim
unread,
Feb 17, 2012, 2:14:54 AM2/17/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to storm-user
On the Storm UI,some time ,the transferred num is not == emitted num.
So,what's the difference between them?
Nathan Marz
unread,
Feb 17, 2012, 3:44:44 AM2/17/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to storm...@googlegroups.com
Emitted is the number of times one of the "emit" methods is called on the OutputCollector. Transferred is the number of actual tuples sent to other tasks. For example, if bolt B has 5 tasks and subscribes to bolt A using an "all" grouping, "transferred" will be 5x "emitted" for that stream of bolt A. Similarly, if bolt A emits a stream that no one subscribes to, "transferred" will be 0.