Mysql解決The total number of locks exceeds the lock table size錯誤
在操作mysql資料庫表時出現以下錯誤。
網上google搜尋相關問題,發現一位外國牛人這麼解釋:
If you're running an operation on a large number of rows within a table that uses the InnoDB storage engine, you might see this error:
ERROR 1206 (HY000): The total number of locks exceeds the lock table size
MySQL is trying to tell you that it doesn't have enough room to store all of the row locks that it would need to execute your query. The only way to fix it for sure is to adjust innodb_buffer_pool_size and restart MySQL. By default, this is set to only 8MB, which is too small for anyone who is using InnoDB to do anything.
If you need a temporary workaround, reduce the amount of rows you're manipulating in one query. For example, if you need to delete a million rows from a table, try to delete the records in chunks of 50,000 or 100,000 rows. If you're inserting many rows, try to insert portions of the data at a single time.
原來是InnoDB表執行大批量資料的更新,插入,刪除操作時會出現這個問題,需要調整InnoDB全域的innodb_buffer_pool_size的值來解決這個問題,並且重啟mysql服務。
查看當前資料庫儲存引擎,在建立時使用 ENGINE=InnoDB類型。
預設的innodb_buffer_pool_size=8M
修改 innodb_buffer_pool_size的值:
vim /etc/my.cnf
點擊(此處)摺疊或開啟 innodb_buffer_pool_size=64M
再一次重啟mysql伺服器,執行表操作,成功執行完畢。
參考:
http://blog.csdn.net/slvher/article/details/9532107