MySQL Forums
Forum List  »  InnoDB

Re: moving binlog_format in M-M while running
Posted by: Rick James
Date: May 14, 2013 09:21PM

Perhaps this will make it safe for live change:
Both machines: Stop all writes
Both machines: STOP SLAVE;
Both machines: SET @@global.binlog_format = ...;
Both machines: START SLAVE;

Alternatively:
Direct all writes to machine A.
Wait for B to be quite.
B: STOP SLAVE;
B: SET @@global.binlog_format = ...;
B: START SLAVE;
Failover so that all writes are going to B.
Repeat on A.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: moving binlog_format in M-M while running
713
May 14, 2013 09:21PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.