压力测试

    测试场景:

    1. 10万设备连接
    2. 30万设备连接
    3. 50万设备连接
    4. 每秒随机10000个设备发送1条消息. 总计10000每秒.
    5. 每秒随机20000个设备发送1条消息. 总计20000每秒

    注意

    本测试在本地虚拟机中进行,屏蔽了网络环境影响,仅仅是对平台性能进行测试.

    使用2个本地Linux虚拟机,一个作为服务端,一个作为压测客户端.

    主机: i7 8700K, 64G内存 ,SSD, macOS,

    服务端虚拟机: 6核28G内存,ubuntu 16.4.

    客户端虚拟机: 4核10G内存,ubuntu 16.4.

    初始数据: 200万设备实例,使用demo中的型号以及物模型.

    客户端使用模拟器 (opens new window)批量模拟设备.

    参考脚本:

    1. #!/usr/bin/env bash
    2. sudo sysctl -p
    3. sudo ufw disable
    4. # 创建虚拟网卡
    5. for i in {10..40}; do sudo ifconfig enp0s6:$i 10.211.55.2$i up ;done
    6. java -jar -Xmx8G -Xms1024m -XX:+UseG1GC device-simulator.jar \
    7. mqtt.batchSize=1000 \
    8. mqtt.port=1883 \
    9. mqtt.address=10.211.55.6 \
    10. mqtt.scriptFile=./scripts/demo-device.js \
    11. mqtt.timeout=1000 \
    12. mqtt.enableEvent=false \
    13. mqtt.eventLimit=40000 \
    14. mqtt.eventRate=1000 \
    15. mqtt.threadSize=128 \
    16. mqtt.bindPortStart=10000 \
    17. mqtt.binds=10.211.55.210,10.211.55.211,10.211.55.212,10.211.55.213,10.211.55.214,10.211.55.215\
    18. ,10.211.55.217,10.211.55.218,10.211.55.219,10.211.55.220,10.211.55.221,10.211.55.222,10.211.55.223\
    19. ,10.211.55.224,10.211.55.225,10.211.55.226,10.211.55.227,10.211.55.228,10.211.55.229,10.211.55.230\
    20. ,10.211.55.238,10.211.55.239

    1000并发请求连接.总计10万连接.

    第一次,CPU平均使用率48%.JVM内存:4.64G.

    第二次,CPU平均使用率78%.JVM内存:4.91G.

    1. create mqtt client: 99000 ok
    2. create mqtt client: 100000 ok
    3. max : 934ms
    4. min : 127ms
    5. avg : 257ms
    6. > 5000ms : 0(0.00%)
    7. > 2000ms : 0(0.00%)
    8. > 1000ms : 0(0.00%)
    9. > 500ms : 3360(3.36%)
    10. > 200ms : 58178(58.18%)
    11. > 100ms : 38462(38.46%)
    12. > 10ms : 0(0.00%)

    TIP

    第一次为刚启动服务,设备首次连接均需要到redis中获取认证信息. 第二次设备信息已经加载到了内存,连接速度快了3倍以上,cpu使用率也更高.

    30万设备连接

    1000并发请求连接.总计30万连接.

    第二次,CPU平均使用率81%,JVM内存: 4.38G

    1. create mqtt client: 298000 ok
    2. create mqtt client: 300000 ok
    3. max : 5959ms
    4. min : 120ms
    5. avg : 358ms
    6. > 2000ms : 6486(2.16%)
    7. > 1000ms : 6902(2.30%)
    8. > 500ms : 16411(5.47%)
    9. > 200ms : 179659(59.89%)
    10. > 100ms : 90285(30.09%)
    11. > 10ms : 0(0.00%)

    1000并发请求连接.总计50万连接.

    第一次,CPU平均使用率58%,JVM内存:5.38G

    第二次,CPU平均使用率88%,JVM内存:8.2G

    1. create mqtt client: 499000 ok
    2. create mqtt client: 500000 ok
    3. max : 4662ms
    4. min : 128ms
    5. avg : 294ms
    6. > 5000ms : 0(0.00%)
    7. > 2000ms : 2421(0.48%)
    8. > 1000ms : 5273(1.05%)
    9. > 500ms : 34368(6.87%)
    10. > 200ms : 278833(55.77%)
    11. > 10ms : 0(0.00%)

    持续30分钟,CPU使用率: 43%.JVM最大内存:3.5G. 数据无堆积,ElasticSearch索引速率20,002.9/s.

    持续30分钟,CPU使用率: 79%.JVM最大内存:7.3G. 数据无堆积,ElasticSearch索引速率40,528.1/s.

    TIP

    由于硬件资源不足,没有进行更大量的消息测试. 理论上性能瓶颈会在elasticsearch的索引速度.