DBA工作:通过日志找到执行慢的sql语句
慢日志:
- 执行时间 > 10
- 未命中索引
配置:
- 基于内存
show variables like '%query%';
set global 变量名 = 值
- 基于配置文件
mysqld --defaults-file = '配置文件路径+my.conf'
my.conf可以借鉴my-default.conf文件中内容。
修改配置后需重启服务器。
本文共 302 字,大约阅读时间需要 1 分钟。
DBA工作:通过日志找到执行慢的sql语句
慢日志:
- 执行时间 > 10
- 未命中索引
配置:
- 基于内存
show variables like '%query%';
set global 变量名 = 值
- 基于配置文件
mysqld --defaults-file = '配置文件路径+my.conf'
my.conf可以借鉴my-default.conf文件中内容。
修改配置后需重启服务器。
转载于:https://www.cnblogs.com/stin/p/8671893.html