我有使用Flask的应用程序进行SQL更新:
query = 'update tbl set x="bla" where filename=%s';
cursor.execute(query, fileName)
此代码适用于多个文件。 突然,我在更新时开始出现这个错误(每次更新调用时错误再次出现)。
InternalError: (1205, u'Lock wait timeout exceeded; try restarting transaction')
但它没有解决我的问题。
试图杀死一些睡眠过程,但它没有用。
来自SHOW ENGINE INNODB STATUS
的信息:
mysql tables in use 1, locked 1
LOCK WAIT 2 lock struct(s), heap size 1136, 5 row lock(s)
MySQL thread id 439228, OS thread handle 139653215057664, query id 7055088 10.66.85.134 admin updating
update tbl set vt_status=\"rescan\" where filename=\'3ec7il\'
Trx read view will not see trx with id >= 131151, sees < 131145
答案 0 :(得分:0)
尝试除了最终解决了它
尝试: Conn = getConn()
最后: Conn.close()