您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關MySQL慢查詢日志不打印的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
測試環境修改 long_query_time=0.2
當執行性以下查詢時,慢查詢日志沒有生效
mysql> select sleep(5);
+----------+
| sleep(5) |
+----------+
| 0 |
+----------+
1 row in set (5.00 sec)
⑴于是檢查參數
mysql> show variables like '%query%';
+------------------------------+------------------+
| Variable_name | Value |
+------------------------------+------------------+
| binlog_rows_query_log_events | OFF |
| ft_query_expansion_limit | 20 |
| have_query_cache | YES |
| long_query_time | 1.000000 |
| query_alloc_block_size | 8192 |
| query_cache_limit | 0 |
| query_cache_min_res_unit | 4096 |
| query_cache_size | 0 |
| query_cache_type | OFF |
| query_cache_wlock_invalidate | OFF |
| query_prealloc_size | 8192 |
| slow_query_log | ON |
| slow_query_log_file | /mlogs/slow1.log |
+------------------------------+------------------+
發現配置正常
⑵于是檢查以下兩個參數
min_examined_row_limit、long-queries-not-using-indexes
mysql> show variables like 'min_examined_ro%';
+------------------------+-------+
| Variable_name | Value |
+------------------------+-------+
| min_examined_row_limit | 10 |
+------------------------+-------+
1 row in set (0.00 sec)
mysql> show variables like 'log_queries_not_using_indexes';
+-------------------------------+-------+
| Variable_name | Value |
+-------------------------------+-------+
| log_queries_not_using_indexes | OFF |
+-------------------------------+-------+
然后將min_examined_row_limit置為0,慢查詢會記錄
兩個參數:
log_queries_not_using_indexes,為on時表示記錄沒用到索引的查詢,即使沒有超過long_query_time
min_examined_row_limit,表示查詢超過多少條就記錄(當 min_examined_row_limit=on的時候)
原因:select sleep(5)語句查詢沒有記錄(即<min_examined_row_limit的值),且沒用到索引
</min_examined_row_limit的值),且沒用到索引
感謝各位的閱讀!關于“MySQL慢查詢日志不打印的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。