您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關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怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。