What do Storm Nimbus sequence numbers mean?

∥☆過路亽.° 提交于 2019-12-12 19:18:15

问题


I have compiled a topology. In nimbus status I have some sequence of numbers like this

executor->start-time-secs <[2 2]1389244616,[3 3]1389244616,[4 4]1389244616,[5 5]1389244616,

What do the sequence numbers mean?


回答1:


In the sequence

:executor->start-time-secs <[2 2]1389244616,[3 3]1389244616,[4 4]1389244616,[5 5]1389244616,

[2 2],[3 3],[1 1] - represents the node. These node are assigned in :executor->node+port{} as given below which is further used by topology

:executor->node+port {[3 3] ["7693b2c4-478b-4412-a351-c558f855374a" 4], [2 2] ["7693b2c4-478b-4412-a351-c558f855374a" 4], [1 1] ["7693b2c4-478b-4412-a351-c558f855374a" 4]}

1389244616 - represents the current timestamp when you are running the topology.

as 1389244616 is equal to 9-Jan-2014 @ 5:16:56am UTC

For more detailed information on storm nimbus, you can refer following link :

http://www.cnblogs.com/fxjwind/p/3144246.html



来源:https://stackoverflow.com/questions/21012299/what-do-storm-nimbus-sequence-numbers-mean

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!