复制错误跳过

Posted 长城之上是千亿的星空,星空之上是不灭的守望。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了复制错误跳过相关的知识,希望对你有一定的参考价值。

关于复制错误跳过建议:
 
不建议跳过,会造成以后数据可能越来越不一致。
假设数据库经常发生不一致,然后经常使用跳过的方法修复的话,说明主从数据可能不一致了,必须赶紧校验主从数据,最好的方法是补数据。
 
 
单个复制
binlog+position
stop slave sql_thread;
set global sql_slave_skip_counter=1;
start slave sql_thread;
 
GTID
stop slave sql_thread;
set gtid_next=‘uuid:N‘;
begin;commit;
set gtid_next=‘automatic‘;
start slave sql_thread;
 
多源复制
binlog+position
stop slave sql_thread for channel ‘master-3307156‘;
set global sql_slave_skip_counter=1;
start slave sql_thread for channel ‘master-3307156‘;
 
GTID
stop slave sql_thread for channel ‘master-3307156‘;
set gtid_next=‘uuid:N‘;
begin;commit;
set gtid_next=‘automatic‘;
start slave sql_thread for channel ‘master-3307156‘;

 

以上是关于复制错误跳过的主要内容,如果未能解决你的问题,请参考以下文章

mysql主从复制跳过错误项

MySQL跳过复制错误

20180205MySQL 1032和1062跳过错误总结

for循环中的跳过错误

vbs 用On Error Resume Next跳过错误,但又想记录错误信息怎么办?

主从故障处理