码迷,mamicode.com
首页 > 数据库 > 详细

mysql 性能剖析-profiles

时间:2018-03-11 14:33:07      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:init   row   off   ssi   时间   down   table   功能   value   

一、show profiles
查看profiles功能是否打开

mysql> show variables like ‘profiling‘;
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| profiling     | OFF   |
+---------------+-------+
1 row in set (0.03 sec)

在当前会话中打开profiles

mysql> show variables like ‘profiling‘;
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| profiling     | OFF   |
+---------------+-------+
1 row in set (0.03 sec)

查询当前会话有哪些sql

show profiles

查询指定sql的详细时间耗费

mysql> show profile for query 3;
+----------------------+----------+
| Status               | Duration |
+----------------------+----------+
| starting             | 0.000087 |
| checking permissions | 0.000017 |
| Opening tables       | 0.000023 |
| init                 | 0.000045 |
| System lock          | 0.000018 |
| optimizing           | 0.000021 |
| statistics           | 0.000075 |
| preparing            | 0.000028 |
| Sorting result       | 0.000016 |
| executing            | 0.000015 |
| Sending data         | 0.000023 |
| Creating sort index  | 0.026676 |
| end                  | 0.000026 |
| query end            | 0.000018 |
| closing tables       | 0.000020 |
| freeing items        | 0.000024 |
| logging slow query   | 0.000038 |
| cleaning up          | 0.000021 |
+----------------------+----------+
18 rows in set, 1 warning (0.04 sec)

mysql 性能剖析-profiles

标签:init   row   off   ssi   时间   down   table   功能   value   

原文地址:https://www.cnblogs.com/yuanlairlj/p/8543355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!