在满足 —expect-slaves 数量后,Locust master 是否会接受并使用额外的 slave?
Will Locust master accept and utilize additional slaves after —expect-slaves number is met?
如果我是 运行 无头的 Locust master,带有 —expect-slaves 3,如果我连接 5 个 slave,master 会接受并利用所有连接的 slave 吗?
答案是肯定的。如果 --expect-slave 3 传了,master 会等 3 个 slave 开始测试,但是可以接受 5 个 slave。以下内容来自官方文档网站。
--expect-slaves=X
Used when starting the master node with --no-web. The master node will then wait until X slave nodes has connected before the test is started.
Link: https://docs.locust.io/en/stable/running-locust-distributed.html#options
如果我是 运行 无头的 Locust master,带有 —expect-slaves 3,如果我连接 5 个 slave,master 会接受并利用所有连接的 slave 吗?
答案是肯定的。如果 --expect-slave 3 传了,master 会等 3 个 slave 开始测试,但是可以接受 5 个 slave。以下内容来自官方文档网站。
--expect-slaves=X
Used when starting the master node with --no-web. The master node will then wait until X slave nodes has connected before the test is started.
Link: https://docs.locust.io/en/stable/running-locust-distributed.html#options