How to skip replication errors in RDS MySQL
Errors will break the replication process in slave. RDS provides an option to skip the error and re-sync the replica.
The following command need to execute on slave instance to skip the error.
>CALL mysql.rds_skip_repl_error;
Please note that this will skip one error only and need to re-execute again if the replication failing with another error.
That's all…