MYSQL从库错误处理办法

GTID模式,跳过一个错误方法

STOP SLAVE;
stop slave;
set gtid_next='3f410aa7-1d93-11eb-97ce-d45d64bb04fa:1-249316239';
begin;commit;
set gtid_next='automatic';
start slave;
show slave status\G

非GTID模式跳过错误方法

1、如果错误数据量,可以使用这种方法:

stop slave;
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
start slave;
show slave status\G



2、长时间跳过,设定错误ID号。

slave-skip-errors=all    跳过一切,不建议使用
slave-skip-errors=1063   只跳过1063这个错误