重新平衡Apache Storm中的执行器 [英] Rebalancing executors in Apache Storm

查看:74
本文介绍了重新平衡Apache Storm中的执行器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试重新平衡正在运行的Apache Storm(0.9.5)拓扑中的螺栓执行器数量.当我执行对Nimbus节点./storm rebalance MyTopology -n 2 -e GreenBolt=4的命令时,它接受命令行输入,但是当我在Storm UI中查看时,执行程序的数量没有改变.

I am trying to rebalance the number of executors for a bolt in a running Apache Storm (0.9.5) topology. When I execute the command to the Nimbus node ./storm rebalance MyTopology -n 2 -e GreenBolt=4 it accepts the command line input but the number of executors is not changed when I view in the Storm UI.

是否存在我无法意识到的局限性,例如重新平衡并不能增加执行者的总数,而只能将它们从一个螺栓移到另一个螺栓?

Is there a limitation that I'm not aware of like a rebalance can not increase the total number of executors and only move them from one bolt to another?

推荐答案

与执行者相比,您总是需要执行更多(或相等数量)的任务.由于任务数量是固定的,因此您需要设置比初始执行程序更大的初始数量,以便能够在运行时扩大执行程序的数量.您可以看到任务数,作为最大执行者数:

You always need to have more (or equal number of) tasks than executors. As the number of tasks is fixed, you need to set a larger initial number than initial executors in order to be able to scale up the number of executors during runtime. You can see the number of tasks, as maximum number of executors:

#executors <= #numTasks

有关详细信息,请参见此处: https://storm.apache.org/documentation/Understanding-the-parallelism-of-a-Storm-topology.html

See here for details: https://storm.apache.org/documentation/Understanding-the-parallelism-of-a-Storm-topology.html

这篇关于重新平衡Apache Storm中的执行器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆