国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

更多QQ空间微信QQ好友腾讯朋友复制链接
您的位置:首頁/技術文章
文章詳情頁

MySQL kill不掉線程的原因

【字号: 作者:豬豬瀏覽:2日期:2023-10-03 14:45:39
背景

在日常的使用過程中,時不時會遇到個別,或者大量的連接堆積在 MySQL 中的現象,這時一般會考慮使用 kill 命令強制殺死這些長時間堆積起來的連接,盡快釋放連接數和數據庫服務器的 CPU 資源。

問題描述

在實際操作 kill 命令的時候,有時候會發現連接并沒有第一時間被 kill 掉,仍舊在 processlist 里面能看到,但是顯示的 Command 為 Killed,而不是常見的 Query 或者是 Execute 等。例如:

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 |+----+------+--------------------+--------+---------+------+--------------+---------------------------------+原因分析

遇事不決先翻官方文檔,這里摘取部分官方文檔的內容:

When you use KILL, a thread-specific kill flag is set for the thread. In most cases, it might take some time for the thread to die because the kill flag is checked only at specific intervals:During SELECT operations, for ORDER BY and GROUP BY loops, the flag is checked after reading a block of rows. If the kill flag is set, the statement is aborted. ALTER TABLE operations that make a table copy check the kill flag periodically for each few copied rows read from the original table. If the kill flag was set, the statement is aborted and the temporary table is deleted. The KILL statement returns without waiting for confirmation, but the kill flag check aborts the operation within a reasonably small amount of time. Aborting the operation to perform any necessary cleanup also takes some time. During UPDATE or DELETE operations, the kill flag is checked after each block read and after each updated or deleted row. If the kill flag is set, the statement is aborted. If you are not using transactions, the changes are not rolled back. GET_LOCK() aborts and returns NULL. If the thread is in the table lock handler (state: Locked), the table lock is quickly aborted. If the thread is waiting for free disk space in a write call, the write is aborted with a “disk full” error message.

官方文檔第一段就很明確的說清楚了 kill 的作用機制:會給連接的線程設置一個線程級別的 kill 標記,等到下一次“標記檢測”的時候才會生效。這也意味著如果下一次“標記檢測”遲遲沒有發生,那么就有可能會出現問題描述中的現象。

官方文檔中列舉了不少的場景,這里根據官方的描述列舉幾個比較常見的問題場景:

select 語句中進行 order by,group by 的時候,如果服務器 CPU 資源比較緊張,那么讀取/獲取一批數據的時間會變長,從而影響下一次“標記檢測”的時間。 對大量數據進行 DML 操作的時候,kill 這一類 SQL 語句會觸發事務回滾(InnoDB引擎),雖然語句被 kill 掉了,但是回滾操作也會非常久。 kill alter 操作時,如果服務器的負載比較高,那么操作一批數據的時間會變長,從而影響下一次“標記檢測”的時間。 其實參考 kill 的作用機制,做一個歸納性的描述的話,那么:任何阻塞/減慢 SQL 語句正常執行的行為,都會導致下一次“標記檢測”推遲、無法發生,最終都會導致 kill 操作的失敗。 模擬一下

這里借用一個參數innodb_thread_concurrency來模擬阻塞 SQL 語句正常執行的場景:

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.

參照官方文檔的描述,這個參數設置得比較低的時候,超過數量限制的 InnoDB 查詢會被阻塞。因此在本次模擬中,這個參數被設置了一個非常低的值。

mysql> show variables like ’%innodb_thread_concurrency%’;+---------------------------+-------+| Variable_name | Value |+---------------------------+-------+| innodb_thread_concurrency | 1 |+---------------------------+-------+1 row in set (0.00 sec)

然后開兩個數據庫連接(Session 1 和 Session 2),分別執行select sleep(3600) from sbtest.sbtest1語句,然后在第三個連接上 kill 掉 Session 2 的查詢:

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 querymysql>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>

可以看到,kill 命令執行之后,Session 2 的連接馬上就斷開了,但是 Session 2 發起的查詢仍舊殘留在 MySQL 中。當然,如果是因為innodb_thread_concurrency這個參數導致了類似的問題的話,直接使用set global的命令調高上限,或者直接設置為 0 就可以解決,這個參數的變更是實時對所有連接生效的。

總結一下

MySQL 的 kill 操作并不是想象中的直接強行終止數據庫連接,只是發送了一個終止的信號,如果 SQL 自身的執行效率過慢,或者受到其他的因素影響(服務器負載高,觸發大量數據回滾)的話,那么這個 kill 的操作很有可能并不能及時終止這些問題查詢,反而可能會因為程序側連接被斷開之后觸發重連,產生更多的低效查詢,進一步拖垮數據庫。

以上就是MySQL kill不掉線程的原因的詳細內容,更多關于MySQL kill線程的資料請關注好吧啦網其它相關文章!

標簽: MySQL 數據庫
相關文章:
主站蜘蛛池模板: 免费精品一区二区三区在线观看 | 美女张开腿让男生桶出水 | 日本免费人做人一区在线观看 | 三上悠亚免费一区二区在线 | 国产a级三级三级三级中国 国产a级特黄的片子视频 | 午夜精品免费 | 香蕉视频老司机 | 国内成人精品视频 | 黄色三级视频网站 | 美女张开腿男人桶 | 国产精品久久久久久久久免费观看 | 久操免费| 中文字幕一区二区三区亚洲精品 | 国产亚洲网站 | 久久99精品久久久久久久不卡 | 亚洲日本在线观看 | 欧美在线高清视频播放免费 | 一级毛片私人影院免费 | 色毛片 | 一区二区三区欧美在线 | 全高清特级毛片 | 亚洲天堂视频在线观看免费 | 久久精品国产91久久综合麻豆自制 | japanese色系国产在线高清 | 国产成人区 | 香港全黄一级毛片在线播放 | 国产三级在线观看免费 | 91精品国产色综合久久 | 日本视频在线免费观看 | 国产精品二 | 亚洲国产精品激情在线观看 | 国产精品久久久久久久久久久搜索 | 国产成人精品亚洲777图片 | 亚洲线精品一区二区三区 | 精品欧美小视频在线观看 | 日韩毛片在线免费观看 | 日本一区二区三区四区公司 | 久草在线国产视频 | 久久精品国产亚洲网站 | 日韩专区欧美 | 亚洲高清在线视频 |