当有一个事务长时间不提交的时候。。。会引起某个表一直被锁。。导致别的事务使用这个表时 引起锁等待问题
Lock wait timeout exceeded; try restarting transaction
举例如下
1.开启事务。锁表lp_user_coupons_bak
start TRANSACTION
update lp_user_coupons_bak set title=concat(title,’1′);
2.此时别的事务对这个表进行操作 就会产生锁等待问题
insert into `lp_user_coupons_bak` (`app_id`, `user_id`, `coupon_id`, `is_usable`, `money`, `usable_threshold`,
`is_mutex`, `img`, `type`, `title`, `usable_start_at`, `usable_end_at`)
values (1, 114, 60, 0, 30.00, 0.00, 1, ”, 1, ’30优惠券’, ‘2018-12-07 11:30:55’, ‘2019-12-28 11:30:55’)
[Err] 1205 – Lock wait timeout exceeded; try restarting transaction
这个时候当你想要找产生问题的事务时。。查看进程等方式都是看不到的。。。
但是可以在 information_schema.innodb_trx 找到对应的进程id
然后通过kill id的方式 释放这个事务
information_schema.innodb_trx中trx_mysql_thread_id这个字段对应session 的id
如下sql 已经加入nagios监控
select a.id,a.user,a.host,b.trx_started,if(TIMESTAMPDIFF(second,b.trx_started,now())>20,current_date,”no_long”) as tran_time
from information_schema.processlist a right outer join information_schema.innodb_trx b on a.id = b.trx_mysql_thread_id;
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/30127122/viewspace-2284573/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/30127122/viewspace-2284573/