Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage导致主从不同步解决方法

使用mysql批量更新或批量删除的大事务时可能会出现以下错误
Multi-statement transaction required more than ‘max_binlog_cache_size’ bytes of storage; increase this mysqld variable and try again
这是由于更新和删除的大事务会写入大量binlog,可能会造成binlog cache过小而导致执行失败。也会遇到主库执行成功而从库不同步的情况。这是因为虽然主从的max_binlog_cache_size参数虽然设置的一样,但是实际使用的binlog cache不一定相同,从而导致binlog cache因为过小而主从复制中断。

mysql> show variables like 'max_binlog_cache_size';
+-----------------------+-----------+
| Variable_name         | Value     |
+-----------------------+-----------+
| max_binlog_cache_size | 134217728 |
+-----------------------+-----------+

查看该参数设置为134217728B,即128MB

mysql> set global max_binlog_cache_size=268435456;
Query OK, 0 rows affected (0.05 sec)

主从的参数都设置为256MB,并将参数文件/etc/my.cnf中的max_binlog_cache_size也更改防止重启失效,最后start slave启动主从复制即可。

你可能感兴趣的:(mysql)