MySQL -- 慢查询slow-query
来源:SegmentFault
时间:2023-01-10 12:44:32 194浏览 收藏
知识点掌握了,还需要不断练习才能熟练运用。下面golang学习网给大家带来一个数据库开发实战,手把手教大家学习《MySQL -- 慢查询slow-query》,在实现功能的过程中也带大家重新温习相关知识点,温故而知新,回头看看说不定又有不一样的感悟!
慢查询的环境变量
slow_query_log: 是否启用慢查询日志,ON=启用,OFF=禁用;
slow_query_log_file: 慢查询日志的存放文件;
> show variables like '%slow_query%'; +---------------------+-----------------+ | Variable_name | Value | +---------------------+-----------------+ | slow_query_log | ON | | slow_query_log_file | armpvm-slow.log | +---------------------+-----------------+ 2 rows in set (0.001 sec)
long_query_time: 慢查询的时间阈值,单位s;
> show variables like '%long_query%'; +-----------------+----------+ | Variable_name | Value | +-----------------+----------+ | long_query_time | 1.000000 | +-----------------+----------+ 1 row in set (0.001 sec)
log_queries_not_using_indexes:是否记录未使用索引的sql语句,记录=ON,不记录=OFF;
> show variables like '%log_queries%'; +-------------------------------+-------+ | Variable_name | Value | +-------------------------------+-------+ | log_queries_not_using_indexes | OFF | +-------------------------------+-------+ 1 row in set (0.001 sec)
慢查询日志的统计分析
使用mysqldumpslow工具进行慢查询的统计分析:
# mysqldumpslow --help Parse and summarize the MySQL slow query log. Options are --verbose verbose --debug debug --help write this text to standard output -v verbose -d debug -s ORDER what to sort by (aa, ae, al, ar, at, a, c, e, l, r, t), 'at' is default aa: average rows affected ae: aggregated rows examined al: average lock time ar: average rows sent at: average query time a: rows affected c: count e: rows examined l: lock time r: rows sent t: query time -r reverse the sort order (largest last instead of first) -t NUM just show the top n queries -a don't abstract all numbers to N and strings to 'S' -n NUM abstract numbers with at least n digits within names -g PATTERN grep: only consider stmts that include this string -h HOSTNAME hostname of db server for *-slow.log filename (can be wildcard), default is '*', i.e. match all -i NAME name of server instance (if using mysql.server startup script) -l don't subtract lock time from total time
按执行总时间,统计top 10的sql语句:
# mysqldumpslow -s t -t 10 armpvm-slow.log .......
慢查询的查询计划分析
从慢查询日志中提取出sql语句,然后在环境上执行:
> explain select id from articles where title='One Life'; +------+-------------+----------+------+---------------+------+---------+------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+-------------+----------+------+---------------+------+---------+------+------+-------------+ | 1 | SIMPLE | articles | ALL | NULL | NULL | NULL | NULL | 4 | Using where | +------+-------------+----------+------+---------------+------+---------+------+------+-------------+ 1 row in set (0.001 sec)
查询计划中重点关注:
- key:使用的索引,若未使用则为null;
- rows:扫描的行数
- Extra: 额外的信息;
慢查询的各阶段时间消耗
一条查询语句:
- 首先经过查询缓存,若缓存命中,则直接返回;(查询缓存已Deprecated)
- 然后经过分析器,进行词法分析和语法分析;
- 然后经过优化器,生成执行计划,选择合适的索引;
- 最后经过执行器,调用存储引擎,返回结果。
使用profile查询各阶段时间消耗:
- 首先,set profiling=1,启动profile,这是一个session级别的配置;
- 然后,执行查询sql语句;
- 然后,show profiles,查看每一个查询所消耗的总时间信息;
- 最后,show profile for query N,查询某个sql语句详细的各阶段执行时间;
mysql> set session profiling = 1; Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> show variables like '%profil%'; +------------------------+-------+ | Variable_name | Value | +------------------------+-------+ | have_profiling | YES | | profiling | ON | | profiling_history_size | 15 | +------------------------+-------+ 3 rows in set (0.01 sec) mysql> select count(*) from film; +----------+ | count(*) | +----------+ | 1000 | +----------+ 1 row in set (0.01 sec) mysql> show profiles; +----------+------------+--------------------------------+ | Query_ID | Duration | Query | +----------+------------+--------------------------------+ | 1 | 0.00449100 | show variables like '%profil%' | | 2 | 0.00254800 | select count(*) from film | +----------+------------+--------------------------------+ 2 rows in set, 1 warning (0.00 sec) mysql> mysql> show profile for query 1; +----------------------+----------+ | Status | Duration | +----------------------+----------+ | starting | 0.001785 | | checking permissions | 0.000020 | | Opening tables | 0.000019 | | init | 0.000071 | | System lock | 0.000032 | | optimizing | 0.000007 | | optimizing | 0.000003 | | statistics | 0.000014 | | preparing | 0.000020 | | statistics | 0.000010 | | preparing | 0.000008 | | executing | 0.000010 | | Sending data | 0.000009 | | executing | 0.000004 | | Sending data | 0.002355 | | end | 0.000030 | | query end | 0.000009 | | closing tables | 0.000005 | | removing tmp table | 0.000015 | | closing tables | 0.000011 | | freeing items | 0.000037 | | cleaning up | 0.000017 | +----------------------+----------+ 22 rows in set, 1 warning (0.00 sec) mysql>
从上面的profile可以看出,耗时最长的是sending data,即server向client发送数据的过程。
今天带大家了解了MySQL的相关知识,希望对你有所帮助;关于数据库的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~
声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
499 收藏
-
244 收藏
-
235 收藏
-
157 收藏
-
101 收藏
最新阅读
更多>
-
208 收藏
-
174 收藏
-
317 收藏
-
371 收藏
-
244 收藏
-
288 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习