Skip to content

Instantly share code, notes, and snippets.

@suprememoocow
Created May 8, 2014 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suprememoocow/e4cd64a5e57359a0d2a4 to your computer and use it in GitHub Desktop.
Save suprememoocow/e4cd64a5e57359a0d2a4 to your computer and use it in GitHub Desktop.
Redis sentinel failover workout script
#!/bin/bash
set -e
TIME=30
# trap ctrl-c and call ctrl_c()
trap ctrl_c INT
function ctrl_c() {
echo + Stopping service 1
kill $REDIS_PID_1 || true
echo + Stopping service 2
kill $REDIS_PID_2 || true
echo + Stopping sentinel
kill $REDIS_SENTINEL_PID || true
}
cat <<EOD > sentinel.dev.conf
sentinel monitor gitter-master 127.0.0.1 6379 1
sentinel down-after-milliseconds gitter-master 2000
sentinel failover-timeout gitter-master 5000
sentinel config-epoch gitter-master 5
EOD
rm -f dump.rdb
echo + Starting server 1
redis-server &
REDIS_PID_1=$!
echo + Starting server 2
redis-server --port 6380 --slaveof localhost 6379 &
REDIS_PID_2=$!
echo + Starting sentinel
redis-server ./sentinel.dev.conf --sentinel &
REDIS_SENTINEL_PID=$!
#for i in {1..5..1}; do
while true; do
echo + Sleeping $TIME seconds to let the system settle
sleep $TIME
echo + Stopping server 1
kill $REDIS_PID_1
echo + Sleeping $TIME seconds to let the system settle
sleep $TIME
echo + Starting server 1
redis-server &
REDIS_PID_1=$!
echo + Sleeping $TIME seconds to let the system settle
sleep $TIME
echo + Stopping server 2
kill $REDIS_PID_2
echo + Sleeping $TIME seconds to let the system settle
sleep $TIME
echo + Starting service 2
redis-server --port 6380 &
REDIS_PID_2=$!
done
echo + Stopping service 1
kill $REDIS_PID_1
echo + Stopping service 2
kill $REDIS_PID_2
echo + Stopping sentinel
kill $REDIS_SENTINEL_PID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment