mysql优化之profile和Performance Schema

文章介绍了MySQL中的查询分析工具Profiling和PerformanceSchema。Profiling用于展示SQL查询的执行步骤和耗时,而PerformanceSchema提供低级别的服务器执行监控,特别是在复杂问题排查时,能更全面地查看线程活动和资源消耗情况,帮助进行性能优化。
摘要由CSDN通过智能技术生成

1.profile
mysql> SELECT @@have_profiling;
+------------------+
| @@have_profiling |
+------------------+
| YES              |
+------------------+
1 row in set, 1 warning (0.00 sec)

mysql> SET profiling = 1;
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> SHOW profiles;
+----------+------------+-------------------------------------+
| Query_ID | Duration   | Query                               |
+----------+------------+-------------------------------------+
|        1 | 0.00010125 | select count(*) from employee       |
|        2 | 0.00015975 | SELECT DATABASE()                   |
|        3 | 0.00040175 | show databases                      |
|        4 | 0.00041950 | show tables                         |
|        5 | 0.07274575 | select count(*) from employee       |
|        6 | 0.00017050 | show profile cpu for query query_id |
|        7 | 0.10228900 | select count(id) from employee      |
+----------+------------+-------------------------------------+
7 rows in set, 1 warning (0.00 sec)

mysql> SHOW profile for query 2;
+----------------------+----------+
| Status               | Duration |
+----------------------+----------+
| starting             | 0.000063 |
| checking permissions | 0.000009 |
| Opening tables       | 0.000007 |
| init                 | 0.000016 |
| optimizing           | 0.000008 |
| executing            | 0.000011 |
| end                  | 0.000006 |
| query end            | 0.000007 |
| closing tables       | 0.000006 |
| freeing items        | 0.000014 |
| cleaning up          | 0.000016 |
+----------------------+----------+
11 rows in set, 1 warning (0.00 sec)

2. Performance Schema
The MySQL Performance Schema is a feature for monitoring MySQL Server
execution at a low level. The Performance Schema has these
characteristics.

这是MySQL官网上对Performance Schema解释的一句话,大意是Performance Schema是一个运行在较低级别里的具有监控MySQL Server执行的功能。
具体可看:https://dev.mysql.com/doc/refman/8.0/en/performance-schema.html
用法:
通过select * from events_waits_current\G; 从表中信息可得到该表中有多少当前线程在运行以及线程运行的其它信息,用来显示每个线程的最新监视事件。
好处是Performance Schema比show profile功能更全,当从SQL语句执行时间等的执行过程分析中无法找到原因进行优化时,用Performance Schema可以直接查看表中有哪些线程在运行,从每个线程的包含信息记录中找到耗时原因。
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值