文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

MySQL中怎么实现性能压力测试

2023-06-20 13:35

关注

MySQL中怎么实现性能压力测试,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

一、MySQL常用配置

以下所有配置参数以32G内存的服务器为基

打开独立的表空间

innodb_file_per_table = 1

MySQL服务所允许的同时会话数的上限,默认为151,经常出现Too Many Connections的错误提示,则需要增大此值

max_connections = 8000

操作系统在监听队列中所能保持的连接数

back_log = 300

每个客户端连接最大的错误允许数量,当超过该次数,MYSQL服务器将禁止此主机的连接请求,直到MYSQL服务器重启或通过flush hosts命令清空此主机的相关信息

max_connect_errors = 1000

所有线程所打开表的数量

open_files_limit = 10240

每个连接传输数据大小,最大1G,须是1024的倍数,一般设为最大的BLOB的值

max_allowed_packet = 32M

请求的最大连接时间

wait_timeout = 10

排序缓冲被用来处理类似ORDER BY以及GROUP BY队列所引起的排序

sort_buffer_size = 16M

不带索引的全表扫描,使用的buffer的最小值

join_buffer_size = 16M

查询缓冲大小

query_cache_size = 128M

指定单个查询能够使用的缓冲区大小,默认为1M

query_cache_limit = 4M

设定默认的事务隔离级别

transaction_isolation = REPEATABLE-READ

线程使用的堆大小,此值限制内存中能处理的存储过程的递归深度和SQL语句复杂性,此容量的内存在每次连接时被预留

thread_stack = 512K

开启二进制日志功能

log_bin

二进制日志格式:基于行

binlog_format = row

InnoDB使用一个缓冲池来保存索引和原始数据, 可设置这个变量到服务器物理内存大小的80%

innodb_buffer_pool_size = 6G

用来同步IO操作的IO线程的数量

innodb_file_io_threads = 4

在Innodb核心内的允许线程数量,建议的设置是CPU数量加上磁盘数量的两倍

innodb_thread_concurrency = 16

用来缓冲日志数据的缓冲区的大小

innodb_log_buffer_size = 16M

在日志组中每个日志文件的大小

innodb_log_file_size = 512M

在日志组中的文件总数

innodb_log_files_in_group = 3

SQL语句在被回滚前,InnoDB事务等待InnoDB行锁的时间

innodb_lock_wait_timeout = 120

慢查询记录的阈值时长,默认10秒

long_query_time = 2

将没有使用索引的查询也记录下来

log-queries-not-using-indexes

my.cnf示例:

[mysqld]datadir=/var/lib/mysqlsocket=/var/lib/mysql/mysql.socksymbolic-links=0innodb_file_per_table = 1innodb_buffer_pool_size = 6442450944  #内存不足6G会报错innodb_file_io_threads = 4innodb_thread_concurrency = 16innodb_log_buffer_size = 16Minnodb_log_file_size = 512Minnodb_log_files_in_group = 3innodb_lock_wait_timeout = 120log_bin = /var/lib/mysql/mariadb-binbinlog_format = rowslow_query_loglong_query_time = 2log-queries-not-using-indexestransaction_isolation = REPEATABLE-READquery_cache_size = 128Mquery_cache_limit = 4Mmax_connections = 8000back_log = 300max_connect_errors = 1000open_files_limit = 10240max_allowed_packet = 32Mwait_timeout = 10sort_buffer_size = 16Mjoin_buffer_size = 16Mthread_stack = 512K

二、MySQL的性能压力测试

常见测试工具:

mysqlslap工具介绍

mysqlslap来自于mariadb包,测试的过程默认生成一个mysqlslap的schema,生成测试表t1,查询和插入测试数据,mysqlslap库自动生成,如果已经存在则先删除。用--only-print来打印实际的测试过程,整个测试完成后不会在数据库中留下痕迹。

常用选项:

测试示例:

1)单线程测试

[root@centos7 ~]# mysqlslap -a -uroot -pEnter password: Benchmark        Average number of seconds to run all queries: 0.004 seconds        Minimum number of seconds to run all queries: 0.004 seconds        Maximum number of seconds to run all queries: 0.004 seconds        Number of clients running queries: 1        Average number of queries per client: 0

2)多线程测试,使用–concurrency来模拟并发连接

[root@centos7 ~]# mysqlslap -uroot -p -a -c 500Enter password: Benchmark        Average number of seconds to run all queries: 3.384 seconds        Minimum number of seconds to run all queries: 3.384 seconds        Maximum number of seconds to run all queries: 3.384 seconds        Number of clients running queries: 500        Average number of queries per client: 0

3)同时测试不同的存储引擎的性能进行对比

[root@centos7 ~]# mysqlslap -uroot -p -a --concurrency=500 --number-of-queries 1000 --iterations=5 --engine=myisam,innodb --debug-infoEnter password: Benchmark        Running for engine myisam        Average number of seconds to run all queries: 0.192 seconds        Minimum number of seconds to run all queries: 0.187 seconds        Maximum number of seconds to run all queries: 0.202 seconds        Number of clients running queries: 500        Average number of queries per client: 2Benchmark        Running for engine innodb        Average number of seconds to run all queries: 0.355 seconds        Minimum number of seconds to run all queries: 0.350 seconds        Maximum number of seconds to run all queries: 0.364 seconds        Number of clients running queries: 500        Average number of queries per client: 2User time 0.33, System time 0.58Maximum resident set size 22892, Integral resident set size 0Non-physical pagefaults 46012, Physical pagefaults 0, Swaps 0Blocks in 0 out 0, Messages in 0 out 0, Signals 0Voluntary context switches 31896, Involuntary context switches 0

4)执行一次测试,分别500和1000个并发,执行5000次总查询

[root@centos7 ~]# mysqlslap -uroot -p -a --concurrency=500,1000 --number-of-queries 5000 --debug-infoEnter password: Benchmark        Average number of seconds to run all queries: 3.378 seconds        Minimum number of seconds to run all queries: 3.378 seconds        Maximum number of seconds to run all queries: 3.378 seconds        Number of clients running queries: 500        Average number of queries per client: 10Benchmark        Average number of seconds to run all queries: 3.101 seconds        Minimum number of seconds to run all queries: 3.101 seconds        Maximum number of seconds to run all queries: 3.101 seconds        Number of clients running queries: 1000        Average number of queries per client: 5User time 0.84, System time 0.64Maximum resident set size 83068, Integral resident set size 0Non-physical pagefaults 139977, Physical pagefaults 0, Swaps 0Blocks in 0 out 0, Messages in 0 out 0, Signals 0Voluntary context switches 31524, Involuntary context switches 3

5)迭代测试

[root@centos7 ~]# mysqlslap -uroot -p -a --concurrency=500 --number-of-queries 5000 --iterations=5 --debug-infoEnter password: Benchmark        Average number of seconds to run all queries: 3.307 seconds        Minimum number of seconds to run all queries: 3.184 seconds        Maximum number of seconds to run all queries: 3.421 seconds        Number of clients running queries: 500        Average number of queries per client: 10User time 2.18, System time 1.58Maximum resident set size 74872, Integral resident set size 0Non-physical pagefaults 327732, Physical pagefaults 0, Swaps 0Blocks in 0 out 0, Messages in 0 out 0, Signals 0Voluntary context switches 73904, Involuntary context switches 3

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注编程网行业资讯频道,感谢您对编程网的支持。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯