标签:
默认情况下下,一个executor运行一个component,即一个task,但有时会指定多个task:
builder.setBolt(
""
,
new
XxBolt()).setNumTasks(
2
);
这是为了rebalance命令。
Storm一个executor里运行多个task是为了rebalance
原文地址:http://www.cnblogs.com/lishouguang/p/4559211.html