DBA工作:通过日志找到执行慢的sql语句
慢日志:
- 执行时间 > 10
- 未命中索引
配置:
- 基于内存
show variables like ‘%query%‘;
set global 变量名 = 值
- 基于配置文件
mysqld --defaults-file = ‘配置文件路径+my.conf‘
my.conf可以借鉴my-default.conf文件中内容。
修改配置后需重启服务器。
标签:变量 索引 文件 default blog log 时间 set gpo
DBA工作:通过日志找到执行慢的sql语句
慢日志:
- 执行时间 > 10
- 未命中索引
配置:
- 基于内存
show variables like ‘%query%‘;
set global 变量名 = 值
- 基于配置文件
mysqld --defaults-file = ‘配置文件路径+my.conf‘
my.conf可以借鉴my-default.conf文件中内容。
修改配置后需重启服务器。
标签:变量 索引 文件 default blog log 时间 set gpo
原文地址:https://www.cnblogs.com/stin/p/8671893.html