The total number of locks exceeds the lock table size錯誤(已糾正)

來源:互聯網
上載者:User
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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.