riverphoenix

导航

 

今天在工作的时候发现自己update 一个表的某个字段超时,想了好久,首先想到的办法是,延长操作时间:

mysql> set innodb_lock_wait_timeout=100
mysql> show variables like 'innodb_lock_wait_timeout';

  但是时间虽然延长了,问题却没有得到解决,在网上找了一圈,发现可能是mysql事务没有提交,导致的锁表,解决办法如下:

1 select * from information_schema.innodb_trx
2 
3 kill 15758

其中15758为thread的id

posted on 2014-06-18 16:41  riverphoenix  阅读(736)  评论(0编辑  收藏  举报