作者:fyupeng
技术专栏:☞ https://github.com/fyupeng
项目地址:☞ https://github.com/fyupeng/distributed-blog-system-api
留给读者
一、介绍
当由于某个业务id
发生死循环一直在运行,那么再来一笔相同的业务id
执行相同操作,就容易发生死锁,导致第二笔无法执行。
二、代码
select trx_mysql_thread_id,a.* from information_schema.innodb_trx a
获取 trx_mysql_thread_id
字段,然后杀死这个线程id
kill 101193176
三、总结
简洁、高效、易用!