0%

MySQL自带压力测试工具mysqlslap的使用方法

mysqlslap是从5.1.4版开始的一个MySQL官方提供的压力测试工具。通过模拟多个并发客户端访问MySQL来执行压力测试,并输出计时信息。并且能很好的对比多个存储引擎在相同环境下的并发压力性能差别。可以指定SQL语句。如果没有指定SQL语句,mysqlslap会自动生成查询schema的SELECT语句。

1、查看帮助信息

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[root@object1 local]# mysqlslap --help
mysqlslap Ver 1.0 Distrib 5.7.18, for Linux (x86_64)
Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Run a query multiple times against the server.

Usage: mysqlslap [OPTIONS]

Default options are read from the following files in the given order:
/etc/my.cnf /etc/mysql/my.cnf /usr/etc/my.cnf ~/.my.cnf
The following groups are read: mysqlslap client
The following options may be given as the first argument:
--print-defaults Print the program argument list and exit.
--no-defaults Don't read default options from any option file,
except for login file.
--defaults-file=# Only read default options from the given file #.
--defaults-extra-file=# Read this file after the global files are read.
--defaults-group-suffix=#
Also read groups with concat(group, suffix)
--login-path=# Read this path from the login file.
-?, --help Display this help and exit.
-a, --auto-generate-sql 自动生成测试表和数据
Generate SQL where not supplied by file or command line.
--auto-generate-sql-add-autoincrement 增加auto_increment一列
Add an AUTO_INCREMENT column to auto-generated tables.
--auto-generate-sql-execute-number=# 自动生成的查询的个数
Set this number to generate a set number of queries to
run.
--auto-generate-sql-guid-primary 增加基于GUID的主键
Add GUID based primary keys to auto-generated tables.
--auto-generate-sql-load-type=name 测试语句的类型。取值包括:read,key,write,update和mixed(默认)
Specify test load type: mixed, update, write, key, or
read; default is mixed.
--auto-generate-sql-secondary-indexes=# 增加二级索引的个数,默认是0
Number of secondary indexes to add to auto-generated
tables.
--auto-generate-sql-unique-query-number=# 不同查询的数量,默认值是10
Number of unique queries to generate for automatic tests.
--auto-generate-sql-unique-write-number=# 不同插入的数量,默认是100
Number of unique queries to generate for
auto-generate-sql-write-number.
--auto-generate-sql-write-number=#
Number of row inserts to perform for each thread (default
is 100).
--commit=# 多少条DML后提交一次
Commit records every X number of statements.
-C, --compress 如果服务器和客户端支持都压缩,则压缩信息传递
Use compression in server/client protocol.
-c, --concurrency=name 模拟N个客户端并发执行select。可指定多个值,以逗号或者 --delimiter 参数指定的值做为分隔符
Number of clients to simulate for query to run.
--create=name 指定用于创建表的.sql文件或者字串
File or string to use create tables.
--create-schema=name 指定待测试的数据库名,MySQL中schema也就是database,默认是mysqlslap
Schema to run tests in.
--csv[=name] Generate CSV output to named file or to stdout if no file
is named.
-#, --debug[=#] This is a non-debug version. Catch this and exit.
--debug-check This is a non-debug version. Catch this and exit.
-T, --debug-info 打印内存和CPU的信息
This is a non-debug version. Catch this and exit.
--default-auth=name Default authentication client-side plugin to use.
-F, --delimiter=name 文件中的SQL语句使用分割符号
Delimiter to use in SQL statements supplied in file or
command line.
--detach=# 每执行完N个语句,先断开再重新打开连接
Detach (close and reopen) connections after X number of
requests.
--enable-cleartext-plugin
Enable/disable the clear text authentication plugin.
-e, --engine=name 创建测试表所使用的存储引擎,可指定多个
Storage engine to use for creating the table.
-h, --host=name Connect to host.
-i, --iterations=# 迭代执行的次数
Number of times to run the tests.
--no-drop Do not drop the schema after the test.
-x, --number-char-cols=name 自动生成的测试表中包含多少个字符类型的列,默认1
Number of VARCHAR columns to create in table if
specifying --auto-generate-sql.
-y, --number-int-cols=name 自动生成的测试表中包含多少个数字类型的列,默认1
Number of INT columns to create in table if specifying
--auto-generate-sql.
--number-of-queries=# 总的测试查询次数(并发客户数×每客户查询次数)
Limit each client to this number of queries (this is not
exact).
--only-print 只输出模拟执行的结果,不实际执行Do not connect to the databases, but instead print out
what would have been done.
-p, --password[=name]
Password to use when connecting to server. If password is
not given it's asked from the tty.
--plugin-dir=name Directory for client-side plugins.
-P, --port=# Port number to use for connection.
--post-query=name 测试完成以后执行的SQL语句的文件或者字符串 这个过程不影响时间计算Query to run or file containing query to execute after
tests have completed.
--post-system=name 测试完成以后执行的系统语句 这个过程不影响时间计算system() string to execute after tests have completed.
--pre-query=name 测试执行之前执行的SQL语句的文件或者字符串 这个过程不影响时间计算Query to run or file containing query to execute before
running tests.
--pre-system=name 测试执行之前执行的系统语句 这个过程不影响时间计算system() string to execute before running tests.
--protocol=name The protocol to use for connection (tcp, socket, pipe,
memory).
-q, --query=name 指定自定义.sql脚本执行测试。例如可以调用自定义的一个存储过程或者sql语句来执行测试Query to run or file containing query to run.
--secure-auth Refuse client connecting to server if it uses old
(pre-4.1.1) protocol. Deprecated. Always TRUE
-s, --silent 不输出Run program in silent mode - no output.
-S, --socket=name The socket file to use for connection.
--sql-mode=name Specify sql-mode to run mysqlslap tool.
--ssl-mode=name SSL connection mode.
--ssl Deprecated. Use --ssl-mode instead.
(Defaults to on; use --skip-ssl to disable.)
--ssl-verify-server-cert
Deprecated. Use --ssl-mode=VERIFY_IDENTITY instead.
--ssl-ca=name CA file in PEM format.
--ssl-capath=name CA directory.
--ssl-cert=name X509 cert in PEM format.
--ssl-cipher=name SSL cipher to use.
--ssl-key=name X509 key in PEM format.
--ssl-crl=name Certificate revocation list.
--ssl-crlpath=name Certificate revocation list path.
--tls-version=name TLS version to use, permitted values are: TLSv1, TLSv1.1
-u, --user=name User for login if not current user.
-v, --verbose 输出更多的信息More verbose output; you can use this multiple times to
get even more verbose output.
-V, --version Output version information and exit.

2、以自动生成测试表和数据的形式,分别模拟 50 和 100 个客户端并发连接处理 1000 个 query 的情况。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[root@object1 local]# mysqlslap -uroot -p'CAOcao123~!@' -a --concurrency=50,100 --number-of-queries=1000 
mysqlslap: [Warning] Using a password on the command line interface can be insecure.
Benchmark
Average number of seconds to run all queries: 0.605 seconds
Minimum number of seconds to run all queries: 0.605 seconds
Maximum number of seconds to run all queries: 0.605 seconds
Number of clients running queries: 50
Average number of queries per client: 20

Benchmark
Average number of seconds to run all queries: 0.534 seconds
Minimum number of seconds to run all queries: 0.534 seconds
Maximum number of seconds to run all queries: 0.534 seconds
Number of clients running queries: 100
Average number of queries per client: 10

3、增加 –debug-info 选项,可以输出内存和CPU信息。