测试调优 (Tuning Guide)

EMQ 消息服务器1.x版本 MQTT 连接压力测试到130万,在一台8核心、32G内存的 CentOS 服务器上。

100万连接测试所需的 Linux 内核参数,网络协议栈参数,Erlang 虚拟机参数,EMQ 消息服务器参数设置如下:

Linux 操作系统参数

系统全局允许分配的最大文件句柄数:

  1. # 2 millions system-wide
  2. sysctl -w fs.file-max=2097152
  3. sysctl -w fs.nr_open=2097152
  4. echo 2097152 > /proc/sys/fs/nr_open

允许当前会话/进程打开文件句柄数:

  1. ulimit -n 1048576

/etc/sysctl.conf

持久化 ‘fs.file-max’ 设置到 /etc/sysctl.conf 文件:

  1. fs.file-max = 1048576

/etc/systemd/system.conf 设置服务最大文件句柄数:

  1. DefaultLimitNOFILE=1048576

/etc/security/limits.conf

/etc/security/limits.conf 持久化设置允许用户/进程打开文件句柄数:

  1. * soft nofile 1048576
  2. * hard nofile 1048576

TCP 协议栈网络参数

并发连接 backlog 设置:

  1. sysctl -w net.core.somaxconn=32768
  2. sysctl -w net.ipv4.tcp_max_syn_backlog=16384
  3. sysctl -w net.core.netdev_max_backlog=16384

可用知名端口范围:

  1. sysctl -w net.ipv4.ip_local_port_range='1000 65535'

TCP Socket 读写 Buffer 设置:

  1. sysctl -w net.core.rmem_default=262144
  2. sysctl -w net.core.wmem_default=262144
  3. sysctl -w net.core.rmem_max=16777216
  4. sysctl -w net.core.wmem_max=16777216
  5. sysctl -w net.core.optmem_max=16777216
  6. #sysctl -w net.ipv4.tcp_mem='16777216 16777216 16777216'
  7. sysctl -w net.ipv4.tcp_rmem='1024 4096 16777216'
  8. sysctl -w net.ipv4.tcp_wmem='1024 4096 16777216'

TCP 连接追踪设置:

  1. sysctl -w net.nf_conntrack_max=1000000
  2. sysctl -w net.netfilter.nf_conntrack_max=1000000
  3. sysctl -w net.netfilter.nf_conntrack_tcp_timeout_time_wait=30

TIME-WAIT Socket 最大数量、回收与重用设置:

  1. net.ipv4.tcp_max_tw_buckets=1048576
  2. # 注意: 不建议开启該设置,NAT模式下可能引起连接RST
  3. # net.ipv4.tcp_tw_recycle = 1
  4. # net.ipv4.tcp_tw_reuse = 1

FIN-WAIT-2 Socket 超时设置:

  1. net.ipv4.tcp_fin_timeout = 15

Erlang 虚拟机参数

优化设置 Erlang 虚拟机启动参数,配置文件 emqttd/etc/emq.conf:

  1. ## Erlang Process Limit
  2. node.process_limit = 2097152
  3. ## Sets the maximum number of simultaneously existing ports for this system
  4. node.max_ports = 1048576

EMQ 消息服务器参数

设置 TCP 监听器的 Acceptor 池大小,最大允许连接数。配置文件 emqttd/etc/emq.conf:

  1. ## TCP Listener
  2. listener.tcp.external = 0.0.0.0:1883
  3. listener.tcp.external.acceptors = 64
  4. listener.tcp.external.max_clients = 1000000

测试客户端设置

测试客户端服务器在一个接口上,最多只能创建65000连接:

  1. sysctl -w net.ipv4.ip_local_port_range="500 65535"
  2. echo 1000000 > /proc/sys/fs/nr_open
  3. ulimit -n 100000

emqtt_benchmark

并发连接测试工具: http://github.com/emqtt/emqtt_benchmark