Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 1.46 KB

9.3_use_sysbench.md

File metadata and controls

17 lines (16 loc) · 1.46 KB

9.3 使用sysbench进行压测

说明: 如果在压测中遇到问题请参考:how about a sysbench-testing-quick-start; 如果在此参考中未包括您遇到的问题请在issue下添加评论,将问题及配置做出说明。

数据清理:

./sysbench/sysbench --mysql-db=mytest --mysql-host=10.186.17.117 --mysql-port=8066 --mysql-table-engine=innodb --mysql-user=test1 --mysql-password=test1 --oltp_tables_count=1 --oltp_auto_inc=off --oltp-table-size=1000000 --oltp-read-only=off --report-interval=1 --default-charset=utf8 --max-requests=0 --percentile=95 --max-time=30 --num-threads=8 --test=../db/select.lua cleanup

数据准备:

./sysbench/sysbench --mysql-db=mytest --mysql-host=10.186.17.117 --mysql-port=8066 --mysql-table-engine=innodb --mysql-user=test1 --mysql-password=test1 --oltp_tables_count=1 --oltp_auto_inc=off --oltp-table-size=1000000 --oltp-read-only=off --report-interval=1 --default-charset=utf8 --max-requests=0 --percentile=95 --max-time=30 --num-threads=8 --test=../db/select.lua prepare

执行压测:

./sysbench/sysbench --mysql-db=mytest --mysql-host=10.186.17.117 --mysql-port=8066 --mysql-table-engine=innodb --mysql-user=test1 --mysql-password=test1 --oltp_tables_count=1 --oltp_auto_inc=off --oltp-table-size=1000000 --oltp-read-only=off --report-interval=1 --default-charset=utf8 --max-requests=0 --percentile=95 --max-time=30 --num-threads=8 --test=../db/select.lua run