mysql查询优化

慢日志

配置

1、 慢日志

#查看是否开启 
show variables like '%slow_query_log%'; 

#开启
set global slow_query_log = 1;

#时间阈值
show variables like '%long_query_time%'

#设置
set global long_query_time = 1;

#重新打开链接,测试
SELECT sleep(4)

#查看慢日志条数
show global status like '%slow_queries%'
查看满日志条数.png

永久生效

vim /etc/mysql/my.cnf

slow_query_log =1

slow_query_log_file=/tmp/mysql_slow.log

慢日志分析

mysqldumpslow 

  -s ORDER  排序方式
    
        c: 访问计数
        l: 锁定时间
        r: 返回记录
        t: 查询时间
        al:平均锁定时间
        ar:平均返回记录数
        at:平均查询时间
  
  -r           倒序排
  -t NUM       只返回前几条
  -g PATTERN   正则表达式
  

用show profile进行sql分析

show profile 用于查询sql 执行的资源消耗,默认关闭,只记录最近15条

配置

#查询是否开启
show variables like '%profiling%';

#开启
set profiling = on;

#查看记录列表
show profiles
记录慢日志.png

使用

show profile cpu, block io for query 5;
sql执行分析.png
Show profile后面的一些参数:

All:显示所有的开销信息

Block io:显示块IO相关开销

Context switches: 上下文切换相关开销

Cpu:显示cpu相关开销

Memory:显示内存相关开销

Source:显示和source_function,source_file,source_line相关的开销信息

explain 执行计划

官方解释:
https://dev.mysql.com/doc/refman/5.7/en/explain-output.html

  • id 查询序列号,倒序执行,从上至下
  • select_type 查询类型
    • simple 简单查询,不包含子查询和union
    • primary 包含子查询的,最外层查询
    • subquery select或 where 里面包含子查询
    • derived 在from 列表中包含的子查询
    • union 并集的第二个select 查询
  • table 指定数据来源
  • partitions 匹配的分区
  • type 表的连接类型,性能由高到低排列
    • system 表只有一行记录,相当于系统表
    • const 通过索引查找,只匹配一行
    • eq_ref 唯一索引扫描
    • ref 非唯一索引扫描
    • range 索引范围查询
    • index 只遍历索引树
    • ALL 全表扫描
  • possible_keys 使用的索引
  • key 实际使用的索引
  • key_len 索引中使用的字节数
  • ref 显示该表的索引字段,关联了哪张表
  • rows 扫描的行数
  • filtered 结果返回的行数占读取的行数
  • extra 额外信息
    • using filesort 文件排序
    • using temporary 使用临时表
    • using index 使用了覆盖索引
    • using where 使用了where 子句
    • using join buffer 使用连接缓冲

你可能感兴趣的:(mysql查询优化)