Viewing and analyzing MySQL execution status

Viewing and analyzing MySQL execution status

When you feel that there is a problem with MySQL performance, you usually check the current MySQL execution status first, using show processlist to view it, for example:

The state column information is very important. First, look at the meaning of each column, and then look at the common state status

What the columns mean

1. id

A flag that you use when you want to kill a statement, for example, mysql> kill 207;

2. user

Display the current user. If you are not root, this command will only display the SQL statements within your authority range.

3. Host

Shows which IP and port the statement was sent from, which can be used to track down the user who issued the problematic statement

4.db

Displays which database this process is currently connected to

5. Command

Displays the commands executed by the current connection, generally sleep, query, and connect

6. time

The duration of this state, in seconds

7. state

Displays the status of the SQL statement using the current connection. This is a very important column. The state is just a certain state in the statement execution. For example, a query needs to go through the states of copying to tmp table, sorting result, and sending data before it can be completed.

8.info

Display this SQL statement. Because of the limited length, long SQL statements are not fully displayed, but it is an important basis for judging problem statements.

state Common state analysis

1. Sleep

Usually means that resources are not released. If it is through a connection pool, the sleep state should be constant within a certain range, for example:

The data query time is 0.1 seconds, while the network output takes about 1 second. The original data connection can be released in 0.1 seconds, but because the front-end program does not perform the close operation and directly outputs the result, the database connection remains in the sleep state before the result is displayed on the user's desktop.

2. Locked

The operation is locked. Usually, using innodb can effectively reduce the occurrence of locked status.

3. Copy to tmp table

When the index and existing structure cannot cover the query conditions, a temporary table will be created to meet the query requirements, generating huge I/O pressure. Copy to tmp table is usually related to table-join queries. It is recommended to reduce associated queries or optimize query statements in depth. If the execution time of a statement in this state is too long, it will seriously affect other operations. In this case, you can kill the operation.

4. Sending data

Sending data is not sending data, but the process of getting data from the physical disk. If you have a large number of result sets, you need to extract data from different disk fragments. If there are too many sending data connections, it is usually because the result set of a query is too large, that is, the index item of the query is not optimized enough.

5. Storing results to query cache

If this status occurs frequently, use set profiling to analyze. If the resource overhead accounts for a large proportion of the overall SQL overhead (even if the overhead is very small, look at the proportion), it means that the query cache is fragmented. Use flush query cache to clear it immediately. The query cache parameters can be set appropriately.

The two common bottlenecks for MySQL databases are CPU and I/O bottlenecks. CPU saturation usually occurs when data is loaded into memory or read from disk. The disk I/O bottleneck occurs when the loaded data is much larger than the memory capacity. If the application is distributed on the network, the bottleneck will appear on the network when the query volume is very large. We can use mpstat, iostat, sar and vmstat to view the performance status of the system.

In addition to the performance bottleneck of the server hardware, for the MySQL system itself, we can use tools to optimize the performance of the database. There are usually three types: using indexes, using EXPLAIN to analyze queries, and adjusting MySQL's internal configuration.

When optimizing MySQL, you usually need to analyze the database. Common analysis methods include slow query logs, EXPLAIN analysis queries, profiling analysis, and show command query system status and system variables. Only by locating and analyzing performance bottlenecks can the performance of the database system be better optimized.

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. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to implement scheduled backup of MySQL database
  • A brief analysis of using JDBC to operate MySQL requires adding Class.forName("com.mysql.jdbc.Driver")
  • Import backup between mysql database and oracle database
  • The simplest online question bank (online question system) developed by php+mysql
  • Detailed explanation of how a SQL statement is executed in MySQL
  • MySQL database 8 - detailed explanation of the application of functions in the database
  • Detailed explanation of mysql download and installation process
  • Summary of MySQL LOAD_FILE() function method
  • MySQL 8.0.15 download and installation detailed tutorial is a must for novices!
  • The use of mysql unique key in query and related issues

<<:  Vue+js click arrow to switch pictures

>>:  Tutorial on configuring SSH and Xshell to connect to the server in Linux (with pictures)

Recommend

Web designers also need to learn web coding

Often, after a web design is completed, the desig...

Vue implements adding watermark to uploaded pictures

This article shares the specific implementation c...

Correct use of MySQL partition tables

Overview of MySQL Partitioned Tables We often enc...

Five guidelines to help you write maintainable CSS code

1. Add a comment block at the beginning of the sty...

In-depth understanding of slot-scope in Vue (suitable for beginners)

There are already many articles about slot-scope ...

How to add a paging navigation bar to the page through Element UI

need Add a paging bar, which can jump to the page...

Implementation of MySQL index-based stress testing

1. Simulate database data 1-1 Create database and...

CSS positioning layout (position, positioning layout skills)

1. What is positioning? The position attribute in...

In-depth study of JavaScript array deduplication problem

Table of contents Preface 👀 Start researching 🐱‍🏍...

Learn the basics of nginx

Table of contents 1. What is nginx? 2. What can n...

Detailed explanation of MySQL persistent statistics

1. The significance of persistent statistical inf...