backgroundIn daily use, you may encounter individual or large number of connections piling up in MySQL from time to time. At this time, you will generally consider using the kill command to forcibly kill these long-pile connections to release the number of connections and the CPU resources of the database server as soon as possible. Problem DescriptionWhen actually using the kill command, you may find that the connection is not killed immediately and can still be seen in processlist, but the displayed Command is Killed instead of the common Query or Execute. For example: mysql> show processlist; +----+------+--------------------+--------+---------+------+--------------+--------------------------------+ | Id | User | Host | db | Command | Time | State | Info | +----+------+--------------------+--------+---------+------+--------------+--------------------------------+ | 31 | root | 192.168.1.10:50410 | sbtest | Query | 0 | starting | show processlist | | 32 | root | 192.168.1.10:50412 | sbtest | Query | 62 | User sleep | select sleep(3600) from sbtest1 | | 35 | root | 192.168.1.10:51252 | sbtest | Killed | 47 | Sending data | select sleep(100) from sbtest1 | | 36 | root | 192.168.1.10:51304 | sbtest | Query | 20 | Sending data | select sleep(3600) from sbtest1 | +----+------+--------------------+--------+---------+------+--------------+--------------------------------+ Cause AnalysisWhen in doubt, look up the official documentation first. Here are some excerpts from the official documentation:
The first paragraph of the official document clearly states the mechanism of kill: a thread-level kill mark will be set for the connected thread, which will not take effect until the next "mark detection". This also means that if the next "mark detection" does not occur in time, the phenomenon described in the problem may occur. The official documentation lists a number of scenarios. Here are a few common problem scenarios based on the official description:
Simulate itHere we use a parameter innodb_thread_concurrency to simulate the scenario of blocking the normal execution of SQL statements: Defines the maximum number of threads permitted inside of InnoDB. A value of 0 (the default) is interpreted as infinite concurrency (no limit). This variable is intended for performance tuning on high concurrency systems. According to the official documentation, when this parameter is set to a low value, InnoDB queries that exceed the limit will be blocked. Therefore, in this simulation, this parameter was set to a very low value. mysql> show variables like '%innodb_thread_concurrency%'; +---------------------------+-------+ | Variable_name | Value | +---------------------------+-------+ | innodb_thread_concurrency | 1 | +---------------------------+-------+ 1 row in set (0.00 sec) Then open two database connections (Session 1 and Session 2), execute Session 1: mysql> select sleep(3600) from sbtest.sbtest1; Session 2: mysql> select sleep(3600) from sbtest.sbtest1; ERROR 2013 (HY000): Lost connection to MySQL server during query mysql> Session 3: mysql> show processlist; +----+------+--------------------+------+---------+------+--------------+----------------------------------------+ | Id | User | Host | db | Command | Time | State | Info | +----+------+--------------------+------+---------+------+--------------+----------------------------------------+ | 44 | root | 172.16.64.10:39290 | NULL | Query | 17 | User sleep | select sleep(3600) from sbtest.sbtest1 | | 45 | root | 172.16.64.10:39292 | NULL | Query | 0 | starting | show processlist | | 46 | root | 172.16.64.10:39294 | NULL | Query | 5 | Sending data | select sleep(3600) from sbtest.sbtest1 | +----+------+--------------------+------+---------+------+--------------+----------------------------------------+ 3 rows in set (0.00 sec) mysql> kill 46; Query OK, 0 rows affected (0.00 sec) mysql> show processlist; +----+------+--------------------+------+---------+------+--------------+----------------------------------------+ | Id | User | Host | db | Command | Time | State | Info | +----+------+--------------------+------+---------+------+--------------+----------------------------------------+ | 44 | root | 172.16.64.10:39290 | NULL | Query | 26 | User sleep | select sleep(3600) from sbtest.sbtest1 | | 45 | root | 172.16.64.10:39292 | NULL | Query | 0 | starting | show processlist | | 46 | root | 172.16.64.10:39294 | NULL | Killed | 14 | Sending data | select sleep(3600) from sbtest.sbtest1 | +----+------+--------------------+------+---------+------+--------------+----------------------------------------+ 3 rows in set (0.00 sec) mysql> As you can see, after the kill command is executed, the connection of Session 2 is disconnected immediately, but the query initiated by Session 2 still remains in MySQL. Of course, if similar problems are caused by To sum upThe kill operation of MySQL does not directly and forcibly terminate the database connection as imagined. It only sends a termination signal. If the execution efficiency of SQL itself is too slow, or is affected by other factors (high server load, triggering a large amount of data rollback), then this kill operation may not be able to terminate these problematic queries in time. On the contrary, it may trigger a reconnection after the program side connection is disconnected, resulting in more inefficient queries and further dragging down the database. The above is the details of why MySQL kill cannot kill threads. For more information about MySQL kill threads, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Web Design: Script Materials Reconstruct User Experience
>>: CSS3 animation – steps function explained
Table of contents Mixin Mixin Note (duplicate nam...
The purpose of setting up MySQL query cache is: C...
Comments and messages were originally a great way...
Execute the command: docker run --name centos8 -d...
1. Install mysql Run the following command to upd...
Table of contents 1. Closure 2. Closure usage sce...
Table of contents 1. What is virtual dom? 2. Why ...
Run cmd with administrator privileges slmgr /ipk ...
Copy code The code is as follows: a:link { font-s...
Introduction When the MySQL InnoDB engine queries...
The default submission method of html is get inste...
Table of contents Function call optimization Func...
In the previous article, it was mentioned that th...
This article example shares the specific code for...
Using CSS layout to create web pages that comply w...