mysql 压力测试工具sysbench

Posted h-gallop

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 压力测试工具sysbench相关的知识,希望对你有一定的参考价值。

2.1 只读示例
./bin/sysbench --test=/usr/share/sysbench/tests/include/oltp_legacy/oltp.lua --mysql-host=192.168.80.134 --mysql-port=3306 --mysql-user=root --mysql-password=root123 --mysql-db=sbtest --oltp-tables-count=10 --oltp-table-size=10000000 --report-interval=10 --oltp-dist-type=uniform --rand-init=on --max-requests=0 --oltp-test-mode=nontrx --oltp-nontrx-mode=select --oltp-read-only=on --oltp-skip-trx=on --time=120 --threads=12
[prepare|run|cleanup]
生成数据|运行测试|清除数据

2.2混合读写
.bin/sysbench --test=/usr/share/sysbench/tests/include/oltp_legacy/oltp.lua --mysql-host=192.168.80.134 --mysql-port=3306 --mysql-user=root --mysql-password=root123 --mysql-db=sbtest --oltp-tables-count=10 --oltp-table-size=500000 --report-interval=10 --rand-init=on --max-requests=0 --oltp-test-mode=nontrx --oltp-nontrx-mode=select --oltp-read-only=off --time=120 --threads=128 prepare
[prepare|run|cleanup]

2.3修改数据只写测试
.bin/sysbench --test=/usr/share/sysbench/tests/include/oltp_legacy/update_index.lua --mysql-host=192.168.80.134 --mysql-port=3306 --mysql-user=root --mysql-password=root123 --mysql-db=sbtest --oltp-tables-count=10 --oltp-table-size=500000 --report-interval=10 --rand-init=on --max-requests=0 --oltp-test-mode=nontrx --oltp-nontrx-mode=select --oltp-read-only=off --time=120 --threads=128 prepare
[prepare|run|cleanup]

以上是关于mysql 压力测试工具sysbench的主要内容,如果未能解决你的问题,请参考以下文章

使用Sysbench对MySQL进行压力测试

mysql之 sysbench1.0.3 安装与系统压力测试

使用sysbench进行MySQL压力测试

使用sysbench进行MySQL压力测试

sysbench压力测试工具简介

Sysbench压力测试工具简介和使用