关于docker下的nginx压力测试
天蓬老师
天蓬老师 2017-04-24 16:00:28
0
2
744

背景环境,在docker官网拉取了ngingx:1.11.1的版本镜像,启动一个容器进程。
本地宿主机用yum安装了nginx 1.11.3的版本
两个配置是一样的

worker_processes  4;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  10240;
}

然后用ab工具分别对两个nginx压力测试
3台,共6W并发

ab -c 20000 -n 400000 -r http://192.168.10.38:8002/index.html

测试时,机器压力如下
docker下的nginx

宿主机下的nginx

安装nginx和docker下的nginx的性能还是差的比较多呢?

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(2)
迷茫

Try adding --net=host when running docker and test again to see if it is caused by the docker virtual network

習慣沉默

I also encountered the same problem. do not know why.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template