阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

MySQL数据库压力测试工具mysqlslap详解

426次阅读
没有评论

共计 7456 个字符,预计需要花费 19 分钟才能阅读完成。

MySQLslap 是从 MySQL 的 5.1.4 版开始就开始官方提供的压力测试工具。通过模拟多个并发客户端并发访问 mysql 来执行压力测试,同时提供了较详细的 SQL 执行数据性能报告,并且能很好的对比多个存储引擎(MyISAM,InnoDB 等)在相同环境下的相同并发压力下的性能差别。

mysqlslap 官方文档:https://dev.mysql.com/doc/refman/5.6/en/mysqlslap.html

Table 4.14 mysqlslap Options

FormatDescriptionIntroduced
–auto-generate-sqlGenerate SQL statements automatically when they are not supplied in files or using command options 
–auto-generate-sql-add-autoincrementAdd AUTO_INCREMENT column to automatically generated tables 
–auto-generate-sql-execute-numberSpecify how many queries to generate automatically 
–auto-generate-sql-guid-primaryAdd a GUID-based primary key to automatically generated tables 
–auto-generate-sql-load-typeSpecify the test load type 
–auto-generate-sql-secondary-indexesSpecify how many secondary indexes to add to automatically generated tables 
–auto-generate-sql-unique-query-numberHow many different queries to generate for automatic tests. 
–auto-generate-sql-unique-write-numberHow many different queries to generate for –auto-generate-sql-write-number 
–auto-generate-sql-write-numberHow many row inserts to perform on each thread 
–commitHow many statements to execute before committing. 
–compressCompress all information sent between client and server 
–concurrencyNumber of clients to simulate when issuing the SELECT statement 
–createFile or string containing the statement to use for creating the table 
–create-schemaSchema in which to run the tests 
–csvGenerate output in comma-separated values format 
–debugWrite debugging log 
–debug-checkPrint debugging information when program exits 
–debug-infoPrint debugging information, memory, and CPU statistics when program exits 
–default-authAuthentication plugin to use5.6.2
–defaults-extra-fileRead named option file in addition to usual option files 
–defaults-fileRead only named option file 
–defaults-group-suffixOption group suffix value 
–delimiterDelimiter to use in SQL statements 
–detachDetach (close and reopen) each connection after each N statements 
–enable-cleartext-pluginEnable cleartext authentication plugin5.6.7
–engineStorage engine to use for creating the table 
–helpDisplay help message and exit 
–hostConnect to MySQL server on given host 
–iterationsNumber of times to run the tests 
–login-pathRead login path options from .mylogin.cnf5.6.6
–no-defaultsRead no option files 
–no-dropDo not drop any schema created during the test run5.6.3
–number-char-colsNumber of VARCHAR columns to use if –auto-generate-sql is specified 
–number-int-colsNumber of INT columns to use if –auto-generate-sql is specified 
–number-of-queriesLimit each client to approximately this number of queries 
–only-printDo not connect to databases. mysqlslap only prints what it would have done 
–passwordPassword to use when connecting to server 
–pipeOn Windows, connect to server using named pipe 
–plugin-dirDirectory where plugins are installed5.6.2
–portTCP/IP port number to use for connection 
–post-queryFile or string containing the statement to execute after the tests have completed 
–post-systemString to execute using system() after the tests have completed 
–pre-queryFile or string containing the statement to execute before running the tests 
–pre-systemString to execute using system() before running the tests 
–print-defaultsPrint default options 
–protocolConnection protocol to use 
–queryFile or string containing the SELECT statement to use for retrieving data 
–secure-authDo not send passwords to server in old (pre-4.1) format5.6.17
–shared-memory-base-nameThe name of shared memory to use for shared-memory connections 
–silentSilent mode 
–socketFor connections to localhost, the Unix socket file to use 
–sslEnable secure connection 
–ssl-caPath of file that contains list of trusted SSL CAs 
–ssl-capathPath of directory that contains trusted SSL CA certificates in PEM format 
–ssl-certPath of file that contains X509 certificate in PEM format 
–ssl-cipherList of permitted ciphers to use for connection encryption 
–ssl-crlPath of file that contains certificate revocation lists5.6.3
–ssl-crlpathPath of directory that contains certificate revocation list files5.6.3
–ssl-keyPath of file that contains X509 key in PEM format 
–ssl-modeSecurity state of connection to server5.6.30
–ssl-verify-server-certVerify server certificate Common Name value against host name used when connecting to server 
–userMySQL user name to use when connecting to server 
–verboseVerbose mode 
–versionDisplay version information and exit

参数参考表:
–host=host_name, -h host_name  连接到的 MySQL 服务器的主机名(或 IP 地址),默认为本机 localhost

–user=user_name, -u user_name  连接 MySQL 服务时用的用户名

–password[=password], -p

  此处含有隐藏内容,需要正确输入密码后可见!

  连接 MySQL 服务时用的密码

–create-schema 代表自定义的测试库名称,测试的 schema,MySQL 中 schema 也就是 database。

(没指定使用哪个数据库时,可能会遇到错误 mysqlslap: Error when connecting to server: 1049 Unknown database ‘mysqlslap’)

–query=name,-q 使用自定义脚本执行测试(可以是 SQL 字符串或脚本),例如可以调用自定义的一个存储过程或者 sql 语句来执行测试。

–create 创建表所需的 SQL(可以是 SQL 字符串或脚本)

–concurrency=N, -c N 表示并发量,也就是模拟多少个客户端同时执行 query。可指定多个值,以逗号或者 –delimiter 参数指定的值做为分隔符。例如:–concurrency=100,200,500(分别执行 100、200、500 个并发)。

–iterations=N, -i N  测试执行的迭代次数,代表要在不同的并发环境中,各自运行测试多少次;多次运行以便让结果更加准确。

–number-of-queries=N 总的测试查询次数 (并发客户数×每客户查询次数)

–engine=engine_name, -e engine_name 代表要测试的引擎,可以有多个,用分隔符隔开。例如:–engine=myisam,innodb,memory。

–auto-generate-sql, -a 自动生成测试表和数据,表示用 mysqlslap 工具自己生成的 SQL 脚本来测试并发压力。

–auto-generate-sql-load-type=type 测试语句的类型。代表要测试的环境是读操作还是写操作还是两者混合的。取值包括:read (scan tables), write (insert into tables), key (read primary keys), update (update primary keys), or mixed (half inserts, half scanning selects). 默认值是:mixed.

–auto-generate-sql-add-auto-increment 代表对生成的表自动添加 auto_increment 列,从 5.1.18 版本开始支持。

–number-char-cols=N, -x N 自动生成的测试表中包含多少个字符类型的列,默认 1

–number-int-cols=N, -y N 自动生成的测试表中包含多少个数字类型的列,默认 1

–commint=N 多少条 DML 后提交一次。

–compress, -C 如果服务器和客户端支持都压缩,则压缩信息传递。

–only-print 只打印测试语句而不实际执行。

–detach=N 执行 N 条语句后断开重连。

–debug-info, -T 打印内存和 CPU 的相关信息。

mysqlslap 的运行有如下 3 个步骤:
1. 创建 schema、table、test data 等(在 MySQL 中,schema 就是 database);
2. 运行负载测试,可以使用多个并发客户端连接;
3. 测试环境清理(删除创建的数据、表等)。

案例:

[root@mysql ~]# mysqlslap -a –concurrency=50,100 –number-of-queries 1000 –auto-generate-sql-add-autoincrement –number-char-cols=10 –number-int-cols=5 -pOracle
Warning: Using a password on the command line interface can be insecure.
Benchmark
Average number of seconds to run all queries: 0.775 seconds
Minimum number of seconds to run all queries: 0.775 seconds
Maximum number of seconds to run all queries: 0.775 seconds
Number of clients running queries: 50
Average number of queries per client: 20

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

[root@mysql ~]# mysqlslap -a –concurrency=50,100 –number-of-queries 1000 –auto-generate-sql-add-autoincrement –number-char-cols=10 –number-int-cols=5 –engine=myisam,innodb -poracle
Warning: Using a password on the command line interface can be insecure.
Benchmark
Running for engine myisam
Average number of seconds to run all queries: 0.117 seconds
Minimum number of seconds to run all queries: 0.117 seconds
Maximum number of seconds to run all queries: 0.117 seconds
Number of clients running queries: 50
Average number of queries per client: 20

Benchmark
Running for engine myisam
Average number of seconds to run all queries: 0.129 seconds
Minimum number of seconds to run all queries: 0.129 seconds
Maximum number of seconds to run all queries: 0.129 seconds
Number of clients running queries: 100
Average number of queries per client: 10

Benchmark
Running for engine innodb
Average number of seconds to run all queries: 1.665 seconds
Minimum number of seconds to run all queries: 1.665 seconds
Maximum number of seconds to run all queries: 1.665 seconds
Number of clients running queries: 50
Average number of queries per client: 20

Benchmark
Running for engine innodb
Average number of seconds to run all queries: 1.480 seconds
Minimum number of seconds to run all queries: 1.480 seconds
Maximum number of seconds to run all queries: 1.480 seconds
Number of clients running queries: 100
Average number of queries per client: 10

本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-06/144820.htm

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-22发表,共计7456字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中

星哥玩云

星哥玩云
星哥玩云
分享互联网知识
用户数
4
文章数
19348
评论数
4
阅读量
7801757
文章搜索
热门文章
开发者必备神器:阿里云 Qoder CLI 全面解析与上手指南

开发者必备神器:阿里云 Qoder CLI 全面解析与上手指南

开发者必备神器:阿里云 Qoder CLI 全面解析与上手指南 大家好,我是星哥。之前介绍了腾讯云的 Code...
星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛 NAS-6:抖音视频同步工具,视频下载自动下载保存 前言 各位玩 NAS 的朋友好,我是星哥!...
云服务器部署服务器面板1Panel:小白轻松构建Web服务与面板加固指南

云服务器部署服务器面板1Panel:小白轻松构建Web服务与面板加固指南

云服务器部署服务器面板 1Panel:小白轻松构建 Web 服务与面板加固指南 哈喽,我是星哥,经常有人问我不...
我把用了20年的360安全卫士卸载了

我把用了20年的360安全卫士卸载了

我把用了 20 年的 360 安全卫士卸载了 是的,正如标题你看到的。 原因 偷摸安装自家的软件 莫名其妙安装...
星哥带你玩飞牛NAS-3:安装飞牛NAS后的很有必要的操作

星哥带你玩飞牛NAS-3:安装飞牛NAS后的很有必要的操作

星哥带你玩飞牛 NAS-3:安装飞牛 NAS 后的很有必要的操作 前言 如果你已经有了飞牛 NAS 系统,之前...
阿里云CDN
阿里云CDN-提高用户访问的响应速度和成功率
随机文章
云服务器部署服务器面板1Panel:小白轻松构建Web服务与面板加固指南

云服务器部署服务器面板1Panel:小白轻松构建Web服务与面板加固指南

云服务器部署服务器面板 1Panel:小白轻松构建 Web 服务与面板加固指南 哈喽,我是星哥,经常有人问我不...
让微信公众号成为 AI 智能体:从内容沉淀到智能问答的一次升级

让微信公众号成为 AI 智能体:从内容沉淀到智能问答的一次升级

让微信公众号成为 AI 智能体:从内容沉淀到智能问答的一次升级 大家好,我是星哥,之前写了一篇文章 自己手撸一...
【开源神器】微信公众号内容单篇、批量下载软件

【开源神器】微信公众号内容单篇、批量下载软件

【开源神器】微信公众号内容单篇、批量下载软件 大家好,我是星哥,很多人都希望能高效地保存微信公众号的文章,用于...
星哥带你玩飞牛NAS-14:解锁公网自由!Lucky功能工具安装使用保姆级教程

星哥带你玩飞牛NAS-14:解锁公网自由!Lucky功能工具安装使用保姆级教程

星哥带你玩飞牛 NAS-14:解锁公网自由!Lucky 功能工具安装使用保姆级教程 作为 NAS 玩家,咱们最...
星哥带你玩飞牛NAS-13:自动追番、订阅下载 + 刮削,动漫党彻底解放双手!

星哥带你玩飞牛NAS-13:自动追番、订阅下载 + 刮削,动漫党彻底解放双手!

星哥带你玩飞牛 NAS-13:自动追番、订阅下载 + 刮削,动漫党彻底解放双手! 作为动漫爱好者,你是否还在为...

免费图片视频管理工具让灵感库告别混乱

一言一句话
-「
手气不错
仅2MB大小!开源硬件监控工具:Win11 无缝适配,CPU、GPU、网速全维度掌控

仅2MB大小!开源硬件监控工具:Win11 无缝适配,CPU、GPU、网速全维度掌控

还在忍受动辄数百兆的“全家桶”监控软件?后台偷占资源、界面杂乱冗余,想查个 CPU 温度都要层层点选? 今天给...
Prometheus:监控系统的部署与指标收集

Prometheus:监控系统的部署与指标收集

Prometheus:监控系统的部署与指标收集 在云原生体系中,Prometheus 已成为最主流的监控与报警...
把小米云笔记搬回家:飞牛 NAS 一键部署,小米云笔记自动同步到本地

把小米云笔记搬回家:飞牛 NAS 一键部署,小米云笔记自动同步到本地

把小米云笔记搬回家:飞牛 NAS 一键部署,小米云笔记自动同步到本地 大家好,我是星哥,今天教大家在飞牛 NA...
星哥带你玩飞牛NAS-12:开源笔记的进化之路,效率玩家的新选择

星哥带你玩飞牛NAS-12:开源笔记的进化之路,效率玩家的新选择

星哥带你玩飞牛 NAS-12:开源笔记的进化之路,效率玩家的新选择 前言 如何高效管理知识与笔记,已经成为技术...
150元打造低成本NAS小钢炮,捡一块3865U工控板

150元打造低成本NAS小钢炮,捡一块3865U工控板

150 元打造低成本 NAS 小钢炮,捡一块 3865U 工控板 一块二手的熊猫 B3 工控板 3865U,搭...