首页 > 数据库技术 > 详细

mysql报错Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage

时间:2017-05-07 14:35:17      阅读:472      评论:0      收藏:0      [点我收藏+]

mysql报错Multi-statement transaction required more than ‘max_binlog_cache_size‘ bytes of storage

 

在执行create table  xx  as  select xx的时候

或者在执行

tpcc-mysql的tpcc_load 的时候

都会遇到这个错误

 

1534, HY000, Writing one row to the row-based binary log failed
Retrying ...

1197, HY000, Multi-statement transaction required more than ‘max_binlog_cache_size‘ bytes of storage; increase this mysqld variable and try again
Retrying ...

 

 

因为使用的是腾讯云主机,1核1G内存,内存不足导致的binlog cache size不够不能写入binlog,导致语句无法执行

 

解决办法:

修改my.cnf,增大binlog_cache_size和max_binlog_cache_size参数的值

binlog_cache_size = 20M
max_binlog_cache_size = 100M

 

mysql报错Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage

原文:http://www.cnblogs.com/MYSQLZOUQI/p/6820688.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!