MySQL中用通用查询日志找出查询次数最多的语句的教程

作者:鲍远森 时间:2024-01-13 23:18:00 

MySQL开启通用查询日志general log
mysql打开general log之后,所有的查询语句都可以在general log文件中以可读的方式得到,但是这样general log文件会非常大,所以默认都是关闭的。有的时候为了查错等原因,还是需要暂时打开general log的(本次测试只修改在内存中的参数值,不设置参数文件)。

general_log支持动态修改:


mysql> select version();

+-----------+
| version() |
+-----------+
| 5.6.16  |
+-----------+
1 row in set (0.00 sec)

mysql> set global general_log=1;

Query OK, 0 rows affected (0.03 sec)

general_log支持输出到table:


mysql> set global log_output='TABLE';

Query OK, 0 rows affected (0.00 sec)

mysql> select * from mysql.general_log\G;

*************************** 1. row ***************************
event_time: 2014-08-14 10:53:18
 user_host: root[root] @ localhost []
 thread_id: 3
 server_id: 0
command_type: Query
 argument: select * from mysql.general_log
*************************** 2. row ***************************
event_time: 2014-08-14 10:54:25
 user_host: root[root] @ localhost []
 thread_id: 3
 server_id: 0
command_type: Query
 argument: select * from mysql.general_log
2 rows in set (0.00 sec)
ERROR:
No query specified

输出到file:


mysql> set global log_output='FILE';

Query OK, 0 rows affected (0.00 sec)

mysql> set global general_log_file='/tmp/general.log';

Query OK, 0 rows affected (0.01 sec)

[root@mysql-db101 tmp]# more /tmp/general.log

/home/mysql/mysql/bin/mysqld, Version: 5.6.16 (Source distribution). started with:
Tcp port: 3306 Unix socket: /home/mysql/logs/mysql.sock
Time         Id Command  Argument
140814 10:56:44   3 Query   select * from mysql.general_log

查询次数最多的SQL语句


analysis-general-log.py general.log | sort | uniq -c | sort -nr

1032 SELECT * FROM wp_comments WHERE ( comment_approved = 'x' OR comment_approved = 'x' ) AND comment_post_ID = x ORDER BY comment_date_gmt DESC
653 SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id in (x) ORDER BY meta_id ASC
527 SELECT FOUND_ROWS()
438 SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = 'x' AND t.term_id = x limit
341 SELECT option_value FROM wp_options WHERE option_name = 'x' limit
329 SELECT t.*, tt.*, tr.object_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy in (x) AND tr.object_id in (x) ORDER BY t.name ASC
311 SELECT wp_posts.* FROM wp_posts WHERE 1= x AND wp_posts.ID in (x) AND wp_posts.post_type = 'x' AND ((wp_posts.post_status = 'x')) ORDER BY wp_posts.post_date DESC
219 SELECT wp_posts.* FROM wp_posts WHERE ID in (x)
218 SELECT tr.object_id FROM wp_term_relationships AS tr INNER JOIN wp_term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy in (x) AND tt.term_id in (x) ORDER BY tr.object_id ASC
217 SELECT wp_posts.* FROM wp_posts WHERE 1= x AND wp_posts.ID in (x) AND wp_posts.post_type = 'x' AND ((wp_posts.post_status = 'x')) ORDER BY wp_posts.menu_order ASC
202 SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts WHERE 1= x AND wp_posts.post_type = 'x' AND (wp_posts.post_status = 'x') ORDER BY wp_posts.post_date DESC limit
118 SET NAMES utf8
115 SET SESSION sql_mode= 'x'
115 SELECT @@SESSION.sql_mode
112 SELECT option_name, option_value FROM wp_options WHERE autoload = 'x'
111 SELECT user_id, meta_key, meta_value FROM wp_usermeta WHERE user_id in (x) ORDER BY umeta_id ASC
108 SELECT YEAR(min(post_date_gmt)) AS firstdate, YEAR(max(post_date_gmt)) AS lastdate FROM wp_posts WHERE post_status = 'x'
108 SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy in (x) AND tt.count > x ORDER BY tt.count DESC limit
107 SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy in (x) AND t.term_id in (x) ORDER BY t.name ASC
107 SELECT * FROM wp_users WHERE ID = 'x'
106 SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts WHERE 1= x AND wp_posts.post_type = 'x' AND (wp_posts.post_status = 'x') AND post_date > 'x' ORDER BY wp_posts.post_date DESC limit
106 SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts WHERE 1= x AND wp_posts.post_type = 'x' AND (wp_posts.post_status = 'x') AND post_date > 'x' ORDER BY RAND() DESC limit
105 SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts WHERE 1= x AND wp_posts.post_type = 'x' AND (wp_posts.post_status = 'x') AND post_date > 'x' ORDER BY wp_posts.comment_count DESC limit

PS:mysql general log日志清除技巧
mysql general log日志不能直接删除,间接方法


USE mysql;
CREATE TABLE gn2 LIKE general_log;
RENAME TABLE general_log TO oldLogs, gn2 TO general_log;
标签:MySQL,查询日志
0
投稿

猜你喜欢

  • asp函数遍历文件夹代码

    2010-06-21 10:38:00
  • vue简单实现购物车结算功能

    2024-05-28 15:54:57
  • asp任何取得多个表单的值

    2008-04-15 15:31:00
  • python虚拟环境virtualenv的使用教程

    2021-03-08 00:50:17
  • 谷歌历年母亲节Logo一览

    2009-05-11 12:17:00
  • QQ聊天窗口链接提示效果代码

    2008-12-16 12:59:00
  • Python读取ini配置文件传参的简单示例

    2022-02-06 09:51:36
  • sql通过日期判断年龄函数的示例代码

    2024-01-13 21:01:02
  • Pycharm 解决自动格式化冲突的设置操作

    2021-06-14 15:05:31
  • 如何安装并使用conda指令管理python环境

    2022-07-02 04:08:43
  • 自然语言处理NLP TextRNN实现情感分类

    2022-01-20 11:14:47
  • JS实现运动缓冲效果的封装函数示例

    2023-06-30 14:34:45
  • python多进程提取处理大量文本的关键词方法

    2022-02-17 13:07:36
  • Python批量生成字幕图片的方法详解

    2023-11-03 05:03:15
  • Yahoo发布一款FireFox网站开发插件

    2007-09-23 16:11:00
  • PHP连接MySQL数据的操作要点

    2023-06-20 09:31:16
  • Websocket通信协议在数字孪生中的应用

    2024-04-30 08:55:46
  • 解析pip安装第三方库但PyCharm中却无法识别的问题及PyCharm安装第三方库的方法教程

    2023-05-17 04:25:43
  • Python正则表达式匹配数字和小数的方法

    2021-07-16 21:29:17
  • 关于JS中的事件--Event对象

    2008-03-16 14:22:00
  • asp之家 网络编程 m.aspxhome.com