MySQL报错提示“The total number of locks exceeds the lock table size”
MySQL执行语句报错,提示“The total number of locks exceeds the lock table size”
解决办法
InnoDB表执行大批量数据的更新,插入,删除操作时会出现这个问题,需要调整InnoDB全局的innodb_buffer_pool_size的值来解决这个问题,并且重启MySQL服务
执行MySQL语句show variables like "%_buffer%";
,查看innodb_buffer_pool_size大小,修改MySQL配置文件,调大innodb_buffer_pool_size数值,然后重启MySQL
来源:https://blog.csdn.net/github_36326955/article/details/54970808