MySQL锁;Lock wait timeout exceeded; try restarting transaction

问题

Lock wait timeout exceeded; try restarting transaction

分析

  • 设置了autocommit=0,但没有提交或者回滚;autocommit是session级别的。如

    set autocommit=0;
    select * from A where id=1 for update;
    ...
    commit;/*rollback 这里可能被忽略、异常等*/
  • 默认设置autocommit=1,但事务没有正常结束,如

    begin;/*start transaction*/
    select * from A where id=1 for update;
    ...
    commit;/*rollback 这里可能被忽略、异常等*/

解决方案

  • 检查阻塞的进程并kill掉【推荐】

    select * from information_schema.processlist p join information_schema.innodb_trx it on it.trx_mysql_thread_id =p.id where trx_query is null;/*排查没有执行sql,但是占用事务的进程*/
    select concat('call mysql.rds_kill(',id,');') from information_schema.processlist p join information_schema.innodb_trx it on it.trx_mysql_thread_id =p.id where trx_query is null;/*kill 阻塞其他进程的进程*/
  • 检查程序是否发生异常导致没有事务没有正常结束。事务正确的使用方式【推荐】

    begin;/*start transaction;*/
    select * from A where id=1 for update;
    ...
    commit;/*rollback*/
  • 查看锁状态

    select * from information_schema.innodb_locks;
    
    select * from information_schema.innodb_lock_waits ;
    
    select * from information_schema.processlist pl join information_schema.innodb_trx it on pl.id=it.trx_mysql_thread_id join information_schema.innodb_locks il on it.trx_id=il.lock_trx_id;/*当前进行的事务 lock*/
  • 查看innodb的状态

    show engine innodb status;

    参考
    http://my.oschina.net/sansom/blog/123364


Wait for your reward

这里写图片描述 这里写图片描述 这里写图片描述 这里写图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值