温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Mysql profile怎么用

发布时间:2021-11-06 10:40:57 来源:亿速云 阅读:104 作者:小新 栏目:MySQL数据库

这篇文章将为大家详细讲解有关Mysql profile怎么用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

如何通过profile来发现语句的开销

构造场景:
开启一个回话,执行语句
lock table film_text read;

开启另外一个回话,执行下面语句:
root@sakila 07:51:14>show variables like '%profil%';
+------------------------+-------+
| Variable_name          | Value |
+------------------------+-------+
| have_profiling         | YES   |
| profiling              | OFF   |
| profiling_history_size | 15    |
+------------------------+-------+
3 rows in set (0.01 sec)

root@sakila 07:52:38>set profiling=1;
Query OK, 0 rows affected, 1 warning (0.00 sec)

root@sakila 07:52:45>update film_text set title='test' where film_id=1003;
Query OK, 0 rows affected (11.02 sec)
Rows matched: 1  Changed: 0  Warnings: 0


root@sakila 07:53:18>show profiles;
+----------+-------------+------------------------------------------------------+
| Query_ID | Duration    | Query                                                |
+----------+-------------+------------------------------------------------------+
|        1 | 11.02395150 | update film_text set title='test' where film_id=1003 |
+----------+-------------+------------------------------------------------------+
1 row in set, 1 warning (0.01 sec)


root@sakila 07:53:26>show profile for query 1;
+------------------------------+-----------+
| Status                       | Duration  |
+------------------------------+-----------+
| starting                     |  0.000793 |
| checking permissions         |  0.000032 |
| Opening tables               |  0.000087 |
| init                         |  0.000026 |
| System lock                  |  0.000025 |
| Waiting for table level lock | 11.018648 |
| System lock                  |  0.000770 |
| updating                     |  0.002947 |
| end                          |  0.000077 |
| query end                    |  0.000069 |
| closing tables               |  0.000062 |
| freeing items                |  0.000253 |
| cleaning up                  |  0.000163 |
+------------------------------+-----------+
13 rows in set, 1 warning (0.00 sec)


可以看到开销是在这个waiting table lock.

貌似 show profiles 只能显示本回话执行的sql语句的情况,即使设置了global profiling=1

所以如果要调优一组sql, 那么把这一组sql放到一个回话中执行,然后执行show profiles 查看每条语句的执行时间,并且进一步分析开销在什么地方。

关于“Mysql profile怎么用”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI