Skip all slave errors in RDS

I use certain my.cnf settings like this. Does an RDS instance provide such parameters?

slave-skip-errors = 1062,1054 replicate-ignore-db=verv_raw replicate-ignore-table=verv.ox_session replicate-wild-ignore-table=verv_raw.ox% replicate-wild-ignore-table=verv_raw.ox% 

I am aware of a procedure that skips one error at a time.

 CALL mysql.rds_skip_repl_error; 

But what I'm looking for is the ability to skip all errors on the follower. Is this possible in an RDS environment?

+6
source share

All Articles