Detailed analysis of the MySQL slow log opening method and storage format

Detailed analysis of the MySQL slow log opening method and storage format

In development projects, we can monitor SQL with efficiency issues through MySQL's slow query log.

The following commands enable logging:

Find the directory for slow query log files

show variables like 'slow_query_log'

Set the slow log file directory

set global slow_query_log_file='home/mysql/sql_log/mysql_slow.log'

Whether to record SQL statements that do not use indexes in the log

set global log_queries_not_using_indexes=on

Set the number of seconds that SQL statements that exceed this limit are recorded in the log.

set global long_query_time=1

Here this time is usually quite large, it is best to set it to 0.01s, depending on your own situation.

Now let's actually execute the command:

First check the log file location:

It can be seen that our slow_query_log is off, which means that we have not enabled the slow query log.

Use show variables like '%log' command to view the status of the log. If our log_queries_not_using_indexes option is OFF,
Then we need to set it to on.

Then use the command to check whether the value of long_query_time is set. If it is 0, it means that all queries will be recorded in the log.
It should be noted that in a production environment, there may be a large amount of logs in a short period of time.

Let's take a look at the log storage format:

The format is as follows:

#Query execution time#Time:140606 12:30:17
#SQL execution host information #User@Host:root[root] @ localhost []
#SQL execution information, query execution time, lock time, number of rows sent and number of rows scanned #Query_time:0.000031 Locak_time:0.000000 Rows_sent:0 Rows_examined:0 
#SQL execution time SET timestamp=1402029017;
#Executed SQL content show tables;

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of MySql slow query analysis and opening slow query log
  • mysql enable slow query how to enable mysql slow query logging
  • Tips for enabling slow query log in MYSQL5.7.9
  • How to enable MySQL slow query log log-slow-queries
  • MySQL slow query optimization and slow query log analysis example tutorial
  • How to enable slow query log in MySQL
  • How to correctly and safely clear the online slow query log in MySQL
  • Basic tutorial on analyzing MySQL slow query log
  • Monitor SQL statement execution efficiency based on MySQL slow log
  • Basic learning tutorial on query log and slow query log in MySQL

<<:  Detailed tutorial on installing JDK8 on Linux system (CentOS7 installation)

>>:  Summary of webpack's mobile adaptation solution

Recommend

Detailed steps to configure my.ini for mysql5.7 and above

There is no data directory, my-default.ini and my...

CSS+HTML to realize the top navigation bar function

Implementation of navigation bar, fixed top navig...

Sample code for implementing Alipay sandbox payment with Vue+SpringBoot

First, download a series of things from the Alipa...

Summary of HTML Hack Tags in IE Browser

Copy code The code is as follows: <!--[if !IE]...

Detailed steps for installing, configuring and uninstalling QT5 in Ubuntu 14.04

1. I downloaded QT5.13 version before, but after ...

Mysql join query principle knowledge points

Mysql join query 1. Basic concepts Connect each r...

Vue shopping cart case study

Table of contents 1. Shopping cart example 2. Cod...

How to use glog log library in Linux environment

Generate Linux library The Linux version uses cen...

Building the User Experience

<br />Maybe you've just come into a comp...

mysql row column conversion sample code

1. Demand We have three tables. We need to classi...

HTML small tag usage tips

Phrase elements such as <em></em> can ...

win10 docker-toolsbox tutorial on building a php development environment

Download image docker pull mysql:5.7 docker pull ...

MYSQL custom function to determine whether it is a positive integer example code

You can write a function: Mainly use regular expr...

In-depth analysis of Flex layout in CSS3

The Flexbox layout module aims to provide a more ...

How to use Tencent slider verification code in Vue3+Vue-cli4 project

Introduction: Compared with traditional image ver...