溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mysql中如何使用show profiles分析sql性能

發(fā)布時間:2022-01-14 16:49:05 來源:億速云 閱讀:107 作者:小新 欄目:數(shù)據(jù)庫

這篇文章主要介紹了mysql中如何使用show profiles分析sql性能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

Show profiles是5.0.37之后添加的,要想使用此功能,要確保版本在5.0.37之后。
 
查看一下我的版本
> Select  version();
+---------------------+
| version()           |
+---------------------+
| 5.0.82-community-nt |
+---------------------+
  www.2cto.com  
1 row in set (0.00 sec)
 
版本是支持show profiles功能的。接下來進入mysql性能跟蹤診斷的世界
 
查看是否打開了profiles功能,默認(rèn)是關(guān)閉的
 
mysql> use test;
 
Database changed
 
mysql> show profiles;
 
Empty set (0.00 sec)
 
顯示為空,說明profiles功能是關(guān)閉的。下面開啟
 
mysql> set profiling=1;
 
Query OK, 0 rows affected (0.00 sec)
 
執(zhí)行下面的查詢
  www.2cto.com  
mysql> explain select distinct player_idfrom task limit 20;
 
mysql> select distinct player_id from task ;
 
然后執(zhí)行 show profiles
 
mysql> show profiles;
 
+----------+------------+------------------------------------------------------+
 
| Query_ID | Duration   | Query                                               |
 
+----------+------------+------------------------------------------------------+
 
|       1 | 0.00035225 | explain select distinct player_id from task limit 20 |
 
|       2 | 1.91772775 | select distinct player_id from task                  |
 
+----------+------------+------------------------------------------------------+
 
此時可以看到執(zhí)行select distinct player_id from task 用了1.91772775秒的時間
 
根據(jù)query_id 查看某個查詢的詳細時間耗費
 
mysql> show profile for query 2;
  www.2cto.com  
+----------------------+----------+
 
| Status               | Duration |
 
+----------------------+----------+
 
| starting             | 0.000052 |
 
| Opening tables       | 0.000009 |
 
| System lock          | 0.000003 |
 
| Table lock           | 0.000007 |
 
| init                 | 0.000013 |
 
| optimizing           | 0.000003 |
 
| statistics           | 0.000009 |
 
| preparing            | 0.000008 |
 
| Creating tmp table   | 0.000074 |
 
| executing            | 0.000002 |
 
| Copying to tmp table |1.916551 |
  www.2cto.com  
| Sending data         | 0.000667 |
 
| end                  | 0.000004 |
 
| removing tmp table   | 0.000065 |
 
| end                  | 0.000002 |
 
| end                  | 0.000002 |
 
| query end            | 0.000003 |
 
| freeing items        | 0.000245 |
 
| closing tables       | 0.000006 |
 
| logging slow query   | 0.000002 |
 
| cleaning up          | 0.000003 |
 
+----------------------+----------+
 
可以看到紅色字體部分耗費了大量時間,這是因為distinct查看會用到臨時表
 
那么可不可以查看占用cpu、 io等信息呢
 
 mysql> show profile block io,cpu for query2;
 
+----------------------+----------+----------+------------+--------------+------
 
---------+
 
| Status               | Duration | CPU_user |CPU_system | Block_ops_in | Block
 
_ops_out |
 
+----------------------+----------+----------+------------+--------------+------
  www.2cto.com  
---------+
 
| starting             | 0.000052 |     NULL |       NULL |         NULL |
 
   NULL |
 
| Opening tables       | 0.000009 |     NULL |       NULL |         NULL |
 
   NULL |
 
| System lock          | 0.000003 |     NULL |       NULL |         NULL |
 
   NULL |
 
| Table lock           | 0.000007 |     NULL |       NULL |         NULL |
 
   NULL |
 
| init                 | 0.000013 |     NULL |       NULL |         NULL |
 
   NULL |
 
| optimizing           | 0.000003 |     NULL |       NULL |         NULL |
 
   NULL |
 
| statistics           | 0.000009 |     NULL |       NULL |         NULL |
 
   NULL |  www.2cto.com  
 
| preparing            | 0.000008 |     NULL |       NULL |        NULL |
 
   NULL |
 
| Creating tmp table   | 0.000074 |     NULL |       NULL |         NULL |
 
   NULL |
 
| executing            | 0.000002 |     NULL |       NULL |         NULL |
 
   NULL |
 
| Copying to tmp table | 1.916551 |     NULL |       NULL |        NULL |
 
   NULL |
 
| Sending data         | 0.000667 |     NULL |       NULL |         NULL |
 
   NULL |
 
| end                  | 0.000004 |     NULL |       NULL |         NULL |
 
   NULL |
 
| removing tmp table   | 0.000065 |     NULL |       NULL |         NULL |
 
   NULL |
 
| end                  | 0.000002 |     NULL |       NULL |         NULL |
 
   NULL |
 
| end                  | 0.000002 |     NULL |       NULL |         NULL |
 
   NULL |
 
| query end            | 0.000003 |     NULL |       NULL |         NULL |
 
   NULL |
 
| freeing items        | 0.000245 |     NULL |       NULL |         NULL |
 
   NULL |
 
| closing tables       | 0.000006 |     NULL |       NULL |         NULL |
 
   NULL |
  www.2cto.com  
| logging slow query   | 0.000002 |     NULL |       NULL |         NULL |
 
   NULL |
 
| cleaning up          | 0.000003 |     NULL |       NULL |         NULL |
 
   NULL |
 
+----------------------+----------+----------+------------+--------------+------
另外還可以看到memory,swaps,context switches,source 等信息
 

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“mysql中如何使用show profiles分析sql性能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI