slave_exec_mode MySQL主从复制模式下的从库执行模式

slave_exec_mode 主要是控制mysql 主从复制中 insert 出现 duplicate-key, update 出现 no-key-found 情况下的处理方式做控制。

 

stop slave;
set global slave_exec_mode=idempotent
start slave;

 

#idempotent 模式影响:
主机 备机
insert duplicate-key slave 执行的是replace into
update no-key-found slave 不做任何处理

 

另一个模式是STRICT,缺省的严格模式,重复主键或者update no-key-found时,报错。