MySQL Forums
Forum List  »  Replication

Re: Replication till specific time
Posted by: Rick James
Date: December 23, 2014 11:35PM

> take updates from master server till a specific date and time.

Not datetime, but position:
http://dev.mysql.com/doc/refman/5.5/en/master-pos-wait.html
You might find mysqlbinlog handy for discovering the pos needed.

> any impact of master server's performance

The binlog info (on the Master) will be copied to relay_log (on the Slave). This involves some network traffic and a small amount of I/O and CPU.

Options: ReplyQuote


Subject
Views
Written By
Posted
1644
December 23, 2014 10:13PM
Re: Replication till specific time
871
December 23, 2014 11:35PM


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.