gpt4 book ai didi

python - 使用 Locust 对 docker-compose 应用程序进行性能测试时,连接被拒绝错误 (111)

转载 作者:行者123 更新时间:2023-12-02 18:18:25 26 4
gpt4 key购买 nike

我正在使用性能测试工具 Locust 对设置为在 docker-compose 中运行的应用程序进行负载测试。对于每个请求,我都会收到以下错误(连接被拒绝,错误 111):

Error report
# occurrences Error
--------------------------------------------------------------------------------------------------------------------------------------------
5 GET /parties/: 'ConnectionError(MaxRetryError("HTTPConnectionPool(host=\'localhost\', port=8080): Max retries exceeded with url: /parties/ (Caused by NewConnectionError(\'<urllib3.connection.HTTPConnection object at 0x7fa6f294df28>: Failed to establish a new connection: [Errno 111] Connection refused\',))",),)'

我正在从 docker 容器中运行 Locust,如下所示:
docker run --volume /mydir/locustfile:/mnt/locust -e LOCUSTFILE_PATH=/mnt/locust/locustfile.py -e TARGET_URL=https://localhost:8080/parties -e LOCUST_OPTS="--clients=1 --no-web --run-time=600" locustio/locust

奇怪的是,当我使用 curl 访问完全相同的 URL 时,它可以正常工作。
curl http://localhost:8080/parties

任何帮助表示赞赏!

最佳答案

localhost可能是在您的上下文中使用的错误主机名。使用容器时,主机名必须与容器的名称匹配。所以请使用您的容器名称而不是 localhost .

引用:

https://github.com/elastic/elasticsearch-py/issues/715

https://docs.locust.io/en/latest/running-locust-docker.html

https://docs.locust.io/en/stable/configuration.html

一般假设:
locustfile.py存在于当前工作目录中

使用 docker compose 的分布式示例:

例如,以下 docker-compose.yml 文件配置将起作用:

services:
web:
build: .
command: python manage.py runserver 0:8000
volumes:
- .:/code/
ports:
- "8000:8000"
master:
image: locustio/locust
ports:
- "8089:8089"
volumes:
- ./:/mnt/locust
command: -f /mnt/locust/locustfile.py --master -H http://web:8000
worker:
image: locustio/locust
volumes:
- ./:/mnt/locust
command: -f /mnt/locust/locustfile.py --worker --master-host master


以下行中的 -H 标志(--host 的别名)起到了作用:
command: -f /mnt/locust/locustfile.py --master -H http://web:8000
docker compose 的非分布式示例:
services:
web:
build: .
command: python manage.py runserver 0:8000
volumes:
- .:/code/
ports:
- "8000:8000"
locust:
image: locustio/locust
ports:
- "8089:8089"
volumes:
- ./:/mnt/locust
command: -f /mnt/locust/locustfile.py --host=http://web:8000

您还可以指定配置文件,而不是在命令行上定义标志。假设文件 locust.conf存在于当前工作目录中:

locust.conf:
host: http://web:8000
所以在你的 docker-compose.yml你做:
command: -f /mnt/locust/locustfile.py --config=/mnt/locust/locust.conf
代替:
command: -f /mnt/locust/locustfile.py --host=http://web:8000
没有 docker compose 的非分布式示例:

容器必须位于同一网络上,以便它们可以相互通信。为此,让我们创建一个名为 locustnw 的通用桥接网络。 :
docker network create --driver bridge locustnw
现在在这个网络中运行你的应用容器。假设它正在监听端口 8000 并命名为 web:
docker run -p 8000:8000 --network=locustnw --name web <my_image>
现在在同一个网络中运行你的 locust 容器。假设它正在监听 8089 端口:
docker run -p 8089:8089 --network=locustnw -v $PWD:/mnt/locust locustio/locust -f /mnt/locust/locustfile.py --host=http://web:8000 --network , --name--host旗帜是关键!

关于python - 使用 Locust 对 docker-compose 应用程序进行性能测试时,连接被拒绝错误 (111),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60550111/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com