【MySQL】慢查詢日誌不列印

風塵_NULL發表於2017-02-06
測試環境修改 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的值),且沒用到索引

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30221425/viewspace-2133122/,如需轉載,請註明出處,否則將追究法律責任。

相關文章