Enabling and configuring MySQL slow query log

Enabling and configuring MySQL slow query log

Introduction

MySQL slow query log is an important function for troubleshooting problematic SQL statements and checking current MySQL performance.

Check whether the slow query function is enabled:

mysql> show variables like 'slow_query%';
+---------------------+------------------------------------+
| Variable_name | Value |
+---------------------+------------------------------------+
| slow_query_log | OFF |
| slow_query_log_file | /var/lib/mysql/instance-1-slow.log |
+---------------------+------------------------------------+
2 rows in set (0.01 sec)
mysql> show variables like 'long_query_time';
+-----------------+-----------+
| Variable_name | Value |
+-----------------+-----------+
| long_query_time | 10.000000 |
+-----------------+-----------+
1 row in set (0.00 sec)

illustrate:

slow_query_log slow query enable status
slow_query_log_file The location where the slow query log is stored (this directory requires writable permissions for the MySQL running account, and is generally set to the MySQL data storage directory)
long_query_time How many seconds does it take for a query to be recorded?

Configuration

Temporary Configuration

Slow query logging is not enabled by default. Enable it temporarily using the command:

mysql> set global slow_query_log='ON';
Query OK, 0 rows affected (0.00 sec)
 
mysql> set global slow_query_log_file='/var/lib/mysql/instance-1-slow.log';
Query OK, 0 rows affected (0.00 sec)
 
mysql> set global long_query_time=2;
Query OK, 0 rows affected (0.00 sec)

Permanent configuration Modify the configuration file to achieve permanent configuration status:

/etc/mysql/conf.d/mysql.cnf
[mysqld]
slow_query_log = ON
slow_query_log_file = /var/lib/mysql/instance-1-slow.log
long_query_time = 2

After configuration, restart MySQL.

test

Run the following command to execute the problematic SQL statement:

mysql> select sleep(2);
+----------+
| sleep(2) |
+----------+
| 0 |
+----------+
1 row in set (2.00 sec)

Then view the slow query log content:

$ cat /var/lib/mysql/instance-1-slow.log
/usr/sbin/mysqld, Version: 8.0.13 (MySQL Community Server - GPL). started with:
Tcp port: 3306 Unix socket: /var/run/mysqld/mysqld.sock
Time Id Command Argument
/usr/sbin/mysqld, Version: 8.0.13 (MySQL Community Server - GPL). started with:
Tcp port: 3306 Unix socket: /var/run/mysqld/mysqld.sock
Time Id Command Argument
# Time: 2018-12-18T05:55:15.941477Z
# User@Host: root[root] @ localhost [] Id: 53
# Query_time: 2.000479 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0
SET timestamp=1545112515;
select sleep(2);

The above is the details of how to enable and configure the MySQL slow query log. For more information about the MySQL slow query log, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of MySql slow query analysis and opening slow query log
  • How to enable MySQL slow query log log-slow-queries
  • Tips for enabling slow query log in MYSQL5.7.9
  • mysql enable slow query how to enable mysql slow query logging
  • How to enable slow query log in MySQL
  • How to enable the slow query log function in MySQL
  • Detailed explanation of how to enable slow query log in MySQL database
  • The role and opening of MySQL slow query log
  • MySQL optimization solution: enable slow query log

<<:  XHTML tags that are easily confused by the location of the use

>>:  Solve the problem that the repository and tag names are both none after Docker loads a new image

Recommend

Linux touch command usage examples

Detailed explanation of linux touch command: 1. C...

Share 5 JS high-order functions

Table of contents 1. Introduction 2. Recursion 3....

Detailed analysis of several situations in which MySQL indexes fail

1. Leading fuzzy query cannot use index (like ...

Solution to the problem that the Vue page image does not display

When making a new version of the configuration in...

Summary of ways to implement single sign-on in Vue

The project has been suspended recently, and the ...

What are the rules for context in JavaScript functions?

Table of contents 1. Rule 1: Object.Method() 1.1 ...

Ubuntu regularly executes Python script example code

Original link: https://vien.tech/article/157 Pref...

Summary of event handling in Vue.js front-end framework

1. v-on event monitoring To listen to DOM events,...

Detailed explanation of the difference between alt and title

These two attributes are often used, but their di...

How to Change Colors and Themes in Vim on Linux

Vim is a text editor that we use very often in Li...

MySQL 1130 exception, unable to log in remotely solution

Table of contents question: 1. Enable remote logi...

JS implements Baidu search box

This article example shares the specific code of ...

Several ways to implement "text overflow truncation and omission" with pure CSS

In our daily development work, text overflow, tru...