Skip to content

Instantly share code, notes, and snippets.

@lichti
Last active November 20, 2015 16:34
Show Gist options
  • Save lichti/81e1d335112cdf8770ec to your computer and use it in GitHub Desktop.
Save lichti/81e1d335112cdf8770ec to your computer and use it in GitHub Desktop.
#!/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