欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解MySql的慢查询分析及开启慢查询日志

程序员文章站 2023-01-10 15:52:14
我最近也在研究mysql性能优化的路上,那么今天也算个学习笔记吧! 在小伙伴们开发的项目中,对于mysql排查问题找出性能瓶颈来说,最容易发现并解决的问题就是mysql的...

我最近也在研究mysql性能优化的路上,那么今天也算个学习笔记吧!

在小伙伴们开发的项目中,对于mysql排查问题找出性能瓶颈来说,最容易发现并解决的问题就是mysql的慢查询以及没有得用索引的查询。

接下来教大家如何开启mysql5.0版本以上的慢查询日志记录;

ok,一起开始找出mysql中执行起来不“爽”的sql语句吧。

首先,我们通过mysql命令进入mysql命令行中:

[root@yunuo_vm ~]# mysql -u root -p
enter password:
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 4977
server version: 5.6.17 source distribution
 
copyright (c) 2000, 2014, oracle and/or its affiliates. all rights reserved.
 
oracle is a registered trademark of oracle corporation and/or its
affiliates. other names may be trademarks of their respective
owners.
 
type 'help;' or '\h' for help. type '\c' to clear the current input statement.
 
mysql>

ps:这里的mysql版本是5.6.17

ok,进入到控制台了,接下来,我们查看下mysql默认配置中多少秒才算慢查询

mysql> show variables like 'long%';
+-----------------+-----------+
| variable_name  | value   |
+-----------------+-----------+
| long_query_time | 10.000000 |
+-----------------+-----------+
1 row in set (0.00 sec)

如上表显示,系统默认的慢查询时间上限是10秒,下面我们来把它改成1秒(大家也可以根据自己实际情况来定);

mysql> set long_query_time=1;  注: 我设置了1, 也就是执行时间超过1秒的都算慢查询。
query ok, 0 rows affected (0.00 sec)

哦了!最后我们来瞅瞅mysql开启慢查询日志记录没有;

mysql> show variables like 'slow%';
+---------------------+---------------+
| variable_name    | value     |
+---------------------+---------------+
| slow_launch_time  | 2       | 
| slow_query_log   | off      |
| slow_query_log_file | /tmp/slow.log |
+---------------------+---------------+

ps:

slow_query_log //是否打开日志记录

slow_query_log_file //日志存放位置

mysql默认没有开启慢查询,下面我们来开启下:

mysql> set global slow_query_log='on';
query ok, 0 rows affected (0.00 sec)

至此大功告成!!!是不是很简单?

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。