Last active
November 20, 2015 16:34
-
-
Save lichti/81e1d335112cdf8770ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function skip { | |
MYSQL_CONN="-uUSER -pPASS"; | |
mysql ${MYSQL_CONN} -e "show slave status \G" | \ | |
grep Seconds_Behind_Master | \ | |
grep NULL && mysql ${MYSQL_CONN} -e "STOP SLAVE; \ | |
SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1; \ | |
START SLAVE;" | |
} | |
for x in $(seq 1 10); do | |
skip | |
sleep 5s | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment