Mysql Lock wait timeout exceeded问题

Java操作mysql遇见该问题记录下,造成原因,ecplise debug调试,由于数据库在云端,忽然断网,导致事物无法提交,也未回滚。

1.select * from information_schema.innodb_trx;

Mysql Lock wait timeout exceeded问题_第1张图片

 

2.show processlist;

Mysql Lock wait timeout exceeded问题_第2张图片

3.查看trx_mysql_thread_id

4.我原来造成死锁的id就是811,直接杀掉这个id就行,对于第一个图trx_mysql_thread_id是827是因为先解决的问题,后来又模拟了一个死锁占用。

你可能感兴趣的:(Java,mysql)