当前位置:网站首页>不是吧?还有人不会定位线上MySQL慢查询问题?
不是吧?还有人不会定位线上MySQL慢查询问题?
2022-08-05 11:44:00 【InfoQ】
1. 慢查询日志的作用
2. 慢查询日志的配置
2.1 查看是否开启了慢查询日志
show variables like 'slow_query_log';
2.2 开启慢查询日志
set global slow_query_log=1;
2.3 设置慢查询日志的阈值
set long_query_time=1;
2.4 修改慢查询日志位置
show variables like '%slow_query_log_file%';
2.5 记录更多慢查询SQL
set global log_slow_admin_statements=ON;
set global log_queries_not_using_indexes=ON;
3. 慢查询日志的使用
select * from user;
cat /usr/local/mysql/data/localhost_slow.log
4. 分析慢查询日志
常用参数有
-s: 表示按何种方式排序:
c: 访问次数
l: 锁定时间
r: 返回记录
t: 查询时间
al: 平均锁定时间
ar: 平均返回记录数
at: 平均查询时间
-t: 返回前面多少条的数据;
4.1 查询返回结果最多的10条SQL:
4.2 查询耗时最长的10条SQL:
边栏推荐
猜你喜欢
训练集Loss收敛,但是测试集Loss震荡的厉害?
数据治理体系演进简介
朴素贝叶斯
.NET深入解析LINQ框架(六:LINQ执行表达式)
PHP高级检索功能的实现以及动态拼接SQL
关注微信公众号,自动登陆网站
小红的aba子序列(离散化、二分、dp维护区间最短)
苹果Meta都在冲的Pancake技术,中国VR团队YVR竟抢先交出产品答卷
Visit GOPS Long Zhi booth, Forrester's latest report: "the Forrester Wave: the fourth quarter of 2021 enterprise service management report
TiDB 6.0 Placement Rules In SQL 使用实践
随机推荐
2022杭电多校联赛第六场 题解
前沿技术数字孪生如何应用在智慧城市上?
再获殊荣 | 赛宁网安入选2022年度“培育独角兽”企业榜单
高泽龙出席博鳌全球旅游生态大会 讲元宇宙与未来网络科技
Byte Qiu Zhao confused me on both sides, and asked me under what circumstances would the SYN message be discarded?
Google启动通用图像嵌入挑战赛
Keras 模型多输出 loss weight metrics 设置
软件测试之集成测试
Letter from Silicon Valley: Act fast, Facebook, Quora and other successful "artifacts"!
课表小程序使用攻略
nyoj1185最大最小值(线段树)
申请百度地图API Key进行百度地图开发,获取经纬度对应地点
机器学习——集成学习
Web3 中的安全问题和防范
祝所有码农七夕快乐~
【名词】什么是PV和UV?
Image segmentation model - a combination of segmentation_models_pytorch and albumations to achieve multi-category segmentation
Security Issues and Prevention in Web3
365天挑战LeetCode1000题——Day 050 在二叉树中增加一行 二叉树
623. Add a row to a binary tree: Simple binary tree traversal problems