一。前言
当我们要对某一条sql的性能进行分析时,可以使用它。Profiling是从 mysql5.0.3版本以后才开放的。
启动profile之后,所有查询包括错误的语句都会记录在内。关闭会话或者set profiling=0 就关闭了。(如果将profiling_history_size参数设置为0,同样具有关闭MySQL的profiling效果。)此工具可用来查询SQL执行状态,System lock和Table lock 花多少时间等等,
对定位一条语句的I/O消耗和CPU消耗 非常重要。(SQL 语句执行所消耗的最大两部分资源就是IO和CPU)
--在mysql5.7之后,profile信息将逐渐被废弃,mysql推荐使用performance schema
二。流程
简易流程大概如下:set profiling=1; //打开分析 run your sql1; run your sql2; show profiles; //查看sql1,sql2的语句分析 show profile for query 1; //查看sql1的具体分析 show profile ALL for query 1; //查看sql1相关的所有分析【主要看i/o与cpu,下边分析中有各项意义介绍】 set profiling=0; //关闭分析
三。含义分析
上图中横向栏意义
+----------------------+----------+----------+------------+"Status": "query end", 状态"Duration": "1.751142", 持续时间"CPU_user": "0.008999", cpu用户"CPU_system": "0.003999", cpu系统"Context_voluntary": "98", 上下文主动切换"Context_involuntary": "0", 上下文被动切换"Block_ops_in": "8", 阻塞的输入操作"Block_ops_out": "32", 阻塞的输出操作"Messages_sent": "0", 消息发出"Messages_received": "0", 消息接受"Page_faults_major": "0", 主分页错误"Page_faults_minor": "0", 次分页错误"Swaps": "0", 交换次数"Source_function": "mysql_execute_command", 源功能"Source_file": "sql_parse.cc", 源文件"Source_line": "4465" 源代码行+----------------------+----------+----------+------------+上图中纵向栏意义
+----------------------+----------+----------+------------+starting:开始checking permissions:检查权限Opening tables:打开表init : 初始化System lock :系统锁optimizing : 优化statistics : 统计preparing :准备executing :执行Sending data :发送数据Sorting result :排序end :结束query end :查询 结束closing tables : 关闭表 /去除TMP 表freeing items : 释放物品cleaning up :清理+----------------------+----------+----------+------------+一般情况下,常用以下语句也就够了 :
mysql->SHOW profile CPU,BLOCK IO io FOR query 2;