Detailed explanation of mysql record time-consuming sql example

Detailed explanation of mysql record time-consuming sql example

mysql records time-consuming sql

MySQL can record time-consuming SQL or SQL that does not use indexes in the slow log for optimization and analysis.

1. Enable mysql slow query log:

MySQL slow query log is very useful for tracking problematic queries. It can analyze the SQL statements that consume a lot of resources in the current program. So how to turn on MySQL slow query log recording?

mysql> show variables like 'log_slow_queries';
+------------------+-------+
| Variable_name | Value |
+------------------+-------+
| log_slow_queries | OFF | 
+------------------+-------+
1 row in set (0.01 sec)

mysql> 

This means that the slow log function is not enabled. To enable it, you need to modify the MySQL configuration file and add the following two parameters in the configuration file "[mysqld]":

long_query_time=1
log-slow-queries=/var/mysql/logs/slow.log

illustrate

long_query_time

This parameter indicates the measurement time of slow query in seconds, with a minimum value of 1 and a default value of 10. Any SQL statement that takes longer than long_query_time will be recorded in the slow query log.

log-slow-queries[=file_name]

The file_name parameter is optional. The default value is host_name-slow.log. If the file_name parameter is specified, MySQL will record the slow query log in the file set by file_name. If file_name provides a relative path, MySQL will record the log in the MySQL data directory. This parameter can only be added in the configuration file and cannot be executed in the command line.

2. Configure the slow log to record unused index queries

You can add the "log_queries_not_using_indexes" parameter to the MySQL startup configuration file or command line parameters to add the query statements that do not use indexes to the slow log.

An example is as follows:

[root@localhost mysqlsla-2.03]# more /etc/my.cnf 
[mysqld]
datadir=/var/lib/mysql
log_bin=/tmp/mysql/bin-log/mysql-bin.log
log_bin=ON
socket=/var/lib/mysql/mysql.sock
user=mysql
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1


log_slow_queries=/tmp/127_slow.log
long_query_time=1
log_queries_not_using_indexes

.......

After restarting mysql, the inspection results are as follows:

mysql> show variables like 'log_slow_queries';
+------------------+-------+
| Variable_name | Value |
+------------------+-------+
| log_slow_queries | ON | 
+------------------+-------+
1 row in set (0.00 sec)

mysql> show variables like 'long_query_time';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| long_query_time | 2 | 
+-----------------+-------+
1 row in set (0.00 sec)

mysql>

The above is a detailed explanation of the SQL example of MySQL recording time-consuming. If you have any questions, please leave a message or discuss in the community of this site. Thank you for reading and hope to help everyone. Thank you for your support of this site!

You may also be interested in:
  • 5 Tips for Protecting Your MySQL Data Warehouse
  • How to avoid the trap of URL time zone in MySQL
  • Compile and install MySQL 5.6 in CentOS Yum
  • Examples of the correct way to use AES_ENCRYPT() and AES_DECRYPT() to encrypt and decrypt MySQL
  • Tutorial on using prepare, execute and deallocate statements in MySQL
  • Basic Tutorial on PDO Operations with MySQL (Recommended)

<<:  CocosCreator Universal Framework Design Network

>>:  Steps to use autoconf to generate Makefile and compile the project

Recommend

How to add a column to a large MySQL table

The question is referenced from: https://www.zhih...

Ubuntu installation Matlab2020b detailed tutorial and resources

Table of contents 1. Resource files 2. Installati...

How to use vue3+TypeScript+vue-router

Table of contents Easy to use Create a project vu...

Vue implements an example of pulling down and scrolling to load data

Table of contents Step 1: Installation Step 2: Ci...

Solution to forgetting mysql password under linux

The problem is as follows: I entered the command ...

Detailed tutorial on installing Ubuntu 19.10 on Raspberry Pi 4

Because some dependencies of opencv could not be ...

Example of adding and deleting range partitions in MySQL 5.5

introduce RANGE partitioning is based on a given ...

Five practical tips for web form design

1. Mobile selection of form text input: In the te...

Summary of 7 types of logs in MySQL

There are the following log files in MySQL: 1: re...

Design theory: On the issues of scheme, resources and communication

<br />This problem does not exist in many sm...

Solution to the problem of not finding Tomcat configuration in Intelli Idea

I joined a new company these two days. The compan...

Nginx configures the same domain name to support both http and https access

Nginx is configured with the same domain name, wh...

Docker private warehouse harbor construction process

1. Preparation 1.1 harbor download harbor downloa...