When Mysql occupies too much CPU, where should we start to optimize it? If the CPU usage is too high, you can consider the following: 1) Generally speaking, excluding the high concurrency factor, you still need to find out which SQL statements are being executed that cause your CPU to be too high. Use the show processlist statement to find the SQL statement with the heaviest load and optimize it, such as creating an index for a certain field. 2) Open the slow query log and explain the SQL statements that take too long to execute and occupy too many resources. The high CPU usage is mostly caused by GroupBy and OrderBy sorting problems, and then slowly optimize and improve them. For example, optimize insert statements, optimize group by statements, optimize order by statements, optimize join statements, etc. 3) Consider optimizing files and indexes regularly; 4) Analyze the table regularly and use optimize table; 5) Optimize database objects; 6) Consider whether it is a lock problem; 7) Adjust some MySQL Server parameters, such as key_buffer_size, table_cache, innodb_buffer_pool_size, innodb_log_file_size, etc. 8) If the amount of data is too large, you can consider using a MySQL cluster or building a high-availability environment. 9) High database CPU usage may be caused by memory latch (leakage) 10) In the case of high concurrency of multiple users, any system will not be able to hold up, so it is necessary to use cache, either memcached or redis cache; 11) Check whether the size of tmp_table_size is too small. If possible, increase it appropriately. 12) If max_heap_table_size is configured too small, increase it a little; 13) MySQL SQL statement sleep connection timeout setting problem (wait_timeout) 14) Use show processlist to check the number of MySQL connections to see if it exceeds the number of connections set by MySQL. Here is a case I have encountered: The website is accessed during peak hours and there is a bit of lag when clicking pages. Log in to the server and find that the machine load is a bit high, and MySQL occupies a high CPU resource, as shown below: The MySQL load remains high. If the slow query log function is turned on, the best way is to optimize the slow SQL statements in the slow query log. If the SQL statements use a large number of group by statements, union queries, etc., the MySQL usage rate will definitely increase. So you need to optimize the SQL statement In addition to optimizing SQL statements, you can also do some configuration optimization. Run show procedureslist in mysql; the following results are displayed: 1. Query a large number of Copying to tmp table on disk status Obviously, because the temporary table is too large, MySQL writes the temporary table to the hard disk, affecting the overall performance. The default value of tmp_table_size in Mysql is only 16MB, which is obviously not enough in the current situation. Solution: Adjust the size of the temporary table 1) Enter the MySQL terminal command to modify it, add global, and it will take effect next time you enter MySQL mysql> set global tmp_table_size=33554432; Log in to mysql again 2) my.cnf configuration file modification [root@www ~]# vim my.cnf Restart mysql 2. The output of the show processlist; command shows which threads are running, which can help identify problematic queries. For example, the following results: Id User Host db Command Time State Info Frequently Asked Questions: Generally, there are too many sleeping connections, which seriously consume MySQL server resources (mainly CPU and memory) and may cause MySQL to crash. Solution: In the MySQL configuration my.cnf file, there is a wait_timeout parameter setting. You can set the sleep connection timeout in seconds. If a connection times out, it will be terminated naturally by MySQL. The default "wait_timeout" of the MySQL server is 28800 seconds, or 8 hours, which means that if a connection is idle for more than 8 hours, MySQL will automatically disconnect the connection. However, the connection pool believes that the connection is still valid (because the validity of the connection is not verified). When the application requests to use the connection, it will result in the following error: The last packet successfully received from the server was 596,688 milliseconds ago. 28800seconds, or 8 hours. If the database connection (java.sql.Connection) remains in a waiting state within wait_timeout seconds, MySQL will close the connection. At this point, your Java application's connection pool still legally holds a reference to the connection. When using this connection to perform database operations, the above error is encountered. Checking the MySQL manual, I found that the maximum values for wait_timeout are 24 days/365 days (windows/linux). For example, change it to 30 days mysql> set global wait_timeout=124800; The above article on optimization methods when Mysql occupies too high CPU (must read) is all the content that the editor shares with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Introduction to Kubernetes (k8s)
>>: How to implement variable expression selector in Vue
Preface I'm currently working on the data ana...
Preface The concept of dark mode originated from ...
Table of contents Implementation ideas There are ...
This article example shares the specific code of ...
Download address: https://dev.mysql.com/downloads...
Overview The builder pattern is a relatively simp...
Counting the number of a string in a file is actu...
Let me show you the effect picture first. Persona...
Copy code The code is as follows: <!DOCTYPE ht...
Unzip the Maven package tar xf apache-maven-3.5.4...
This article shares the specific code of JS to ac...
This article shares the specific code of Vue intr...
Using provide+inject combination in Vue First you...
When Mysql occupies too much CPU, where should we...
Preface Recently I encountered a requirement, whi...