MySQL Forums
Forum List  »  Replication

Re: measuring slave lag without sysdate() - 4.1.13
Posted by: Rick James
Date: February 11, 2012 12:00AM

Well, I learned something!

Still I think this should work in any version:

Master: UPDATE Heartbeat SET master_time = NOW();

Slave: SELECT UNIX_TIMESTAMP() - UNIX_TIMESTAMP(master_time) FROM Heartbeat;

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: measuring slave lag without sysdate() - 4.1.13
904
February 11, 2012 12:00AM


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.