MYSQL error 3100:error on observer while running replication hook berfore_commit【解决方法】

该错误出现原因:

事务大小超过数据库默认大小。

show global variables like '%group_replication_transaction_size_limit%';

一般大小为141M(150000000),修改为2倍

set global group_replication_transaction_size_limit=300000000;
原文地址:https://www.cnblogs.com/John-2011/p/15111935.html