mysql死锁情况(MySQL kill不掉线程的原因)
mysql死锁情况
MySQL kill不掉线程的原因背景
在日常的使用过程中,时不时会遇到个别,或者大量的连接堆积在 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 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>
可以看到,kill 命令执行之后,Session 2 的连接马上就断开了,但是 Session 2 发起的查询仍旧残留在 MySQL 中。当然,如果是因为innodb_thread_concurrency
这个参数导致了类似的问题的话,直接使用set global
的命令调高上限,或者直接设置为 0 就可以解决,这个参数的变更是实时对所有连接生效的。
总结一下
MySQL 的 kill 操作并不是想象中的直接强行终止数据库连接,只是发送了一个终止的信号,如果 SQL 自身的执行效率过慢,或者受到其他的因素影响(服务器负载高,触发大量数据回滚)的话,那么这个 kill 的操作很有可能并不能及时终止这些问题查询,反而可能会因为程序侧连接被断开之后触发重连,产生更多的低效查询,进一步拖垮数据库。
以上就是MySQL kill不掉线程的原因的详细内容,更多关于MySQL kill线程的资料请关注开心学习网其它相关文章!
- mysql5.7.19下载及安装教程(Apache2.2.16+PHP5.3.3+MySQL5.1.49的配置方法)
- mysql8.0安装版安装详细教程(mysql 8.0.24版本安装配置方法图文教程)
- mysql cache(MySQL取消了Query Cache的原因)
- 图片如何存放在mysql中(将图片保存到mysql数据库并展示在前端页面的实现代码)
- mysql连接navicat报错1045(Navicat 连接MySQL8.0.11出现2059错误)
- 查询按照部门分组的mysql语句(Mysql根据某层部门ID查询所有下级多层子部门的示例)
- mysql的分页原理(mysql分页的limit参数简单示例)
- 怎么把csv文件导入mysql(mysql导入csv的4种报错的解决方法)
- 搭建php和mysql的运行环境(Windows环境开发PHP完整配置教程Apache+Mysql+PHP)
- iis6双php版本的设置(云主机IIS7.5支持PHP5.3以上版本和MYSQL)
- mysql8.0设置root密码(MySQL8.0.23版本的root密码重置最优解法)
- mysql数据库怎么换行(MySQL数据中很多换行符和回车符的解决方法)
- mysql主从复制时突然来了一批数据(MySQL主从复制断开的常用修复方法)
- mysql8.0中如何导入数据(mysql8.0.20数据目录迁移的方法)
- mysql数据库使用规则(mysql数据库基本语法及操作大全)
- mysql怎么看脱机数据(MYSQL电话号码,身份证数据脱敏的实现)
- 小米推出米兔儿童电话手表奥特曼版,799 元,支持微信 QQ(小米推出米兔儿童电话手表奥特曼版)
- 贾怀胤唱《白龙马》 炸场 了 没想到京剧还能这么玩(贾怀胤唱白龙马)
- 白龙马的改编学生版,快来看看(白龙马的改编学生版)
- 萌娃唱《白龙马》走红,那生动的小表情,网友直呼 简直是戏精(萌娃唱白龙马走红)
- 朱鹤松被不断认可,凤凰传奇玲花喊话岳云鹏,索要老朱演出门票(朱鹤松被不断认可)
- 元宵晚会槽点多,芒果台上来就假唱,岳云鹏不说相声改评书了(元宵晚会槽点多)
热门推荐
- python删除列表中的重复元素(Python实现去除列表中重复元素的方法总结7种方法)
- css3渐变放大功能(CSS3 渐变Gradients之CSS3 线性渐变)
- MVC中outputcache缓存
- js淘宝购物车效果代码(JavaScript实现电商平台商品细节图)
- java集成钉钉发送消息(Python实现钉钉发送报警消息的方法)
- css3怎么创建圆角(CSS3中border-radius属性设定圆角的使用技巧)
- 云服务器哪种操作系统好(云服务器选什么操作系统比较好?)
- python条形码识别(python3转换code128条形码的方法)
- setTimeout和setIntelval的用法和区别
- ubuntu内核升级指定版本(Ubuntu12.04建立内核树实现过程详解)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9