在mysql5.1以后的版本:
客户端带了个工具mysqlslap可以对mysql进行:
可以使用mysqlslap --help来显示使用方法:
Default options are read from the following files in the given
order:
/etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf
--concurrency代表并发数量,多个可以用逗号隔开,当然你也可以用自己的分隔符隔开,这个时候要用到--delimiter开关。
--engines代表要测试的引擎,可以有多个,用分隔符隔开。
--iterations代表要运行这些测试多少次。
--auto-generate-sql
代表用系统自己生成的SQL脚本来测试。
--auto-generate-sql-load-type
代表要测试的是读还是写还是两者混合的(read,write,update,mixed)
--number-of-queries
代表总共要运行多少次查询。每个客户运行的查询数量可以用查询总数/并发数来计算。比如倒数第二个结果2=200/100。
--de-info 代表要额外输出CPU以及内存的相关信息。
--number-int-cols :
Number of INT columns to create in table if specifying
--auto-generate-sql.
--number-char-cols 意思同上。
--create-schema
代表自己定义的模式(在MySQL中也就是库)。
--query The file or string containing
the SELECT statement to use for retrieving data.
--only-print
如果只想打印看看SQL语句是什么,可以用这个选项。
mysqlslap -h192.168.3.18 -P3306 --concurrency=100 --iterations=1
--auto-generate-sql --auto-generate-sql-add-autoincrement
--auto-generate-sql-load-type=mixed --engine=myisam --number-of-queries=10
--debug-info -umysql -p123
或:
mysqlslap -h192.168.3.18 -P4040 --concurrency=100 --iterations=1
--create-schema='test' --query='select * from test;' --number-of-queries=10
--debug-info -umysql -p123
要是看到底做了什么可以加上:--only-print
Benchmark
Average number of seconds to run all queries: 25.225
seconds
Minimum number of seconds to run all queries: 25.225
seconds
Maximum number of seconds to run all queries: 25.225
seconds
Number of clients running queries: 100
Average
number of queries per client: 0
以上表明100个客户端同时运行要25秒
阅读(1107) | 评论(0) | 转发(0) |