Reputation: 8844
I have setup mariadb master slave replication about a week back.It worked fine for 3-4 days but later the replication has stopped without giving any errors.The value of seconds behind master parameter is increasing. I have posted the screenshot of
SHOW SLAVE STATUS;
Below is the result of SHOW PROCESSLIST;
Doing mysqlbinlog mysql-relay-bin.000040 > slave.txt
this is the error i got
ERROR: Error in Log_event::read_log_event(): 'Found invalid event in binary log', data_len: 39, event_type: -93
ERROR: Could not read entry at offset 535: Error in log format or read error.
How to get the replication to work again?This problem is because of master or slave db?
Upvotes: 0
Views: 1071
Reputation: 8844
The problem seems to be because of corrupted mysql binary log.I ended up skipping a counter and replication continued from there.Also shifted to row based replication which seems like much safer option than statement based(this has nothing to do with replication stopping).
Upvotes: 1