Created
June 14, 2017 17:28
-
-
Save cicorias/7e6ab65b229067bab42e56ee34630c87 to your computer and use it in GitHub Desktop.
Exponential backoff in Bash
This file contains hidden or 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
# Retries a command a with backoff. | |
# | |
# The retry count is given by ATTEMPTS (default 5), the | |
# initial backoff timeout is given by TIMEOUT in seconds | |
# (default 1.) | |
# | |
# Successive backoffs double the timeout. | |
# | |
# Beware of set -e killing your whole script! | |
function with_backoff { | |
local max_attempts=${ATTEMPTS-5} | |
local timeout=${TIMEOUT-1} | |
local attempt=0 | |
local exitCode=0 | |
while [[ $attempt < $max_attempts ]] | |
do | |
"$@" | |
exitCode=$? | |
if [[ $exitCode == 0 ]] | |
then | |
break | |
fi | |
echo "Failure! Retrying in $timeout.." 1>&2 | |
sleep $timeout | |
attempt=$(( attempt + 1 )) | |
timeout=$(( timeout * 2 )) | |
done | |
if [[ $exitCode != 0 ]] | |
then | |
echo "You've failed me for the last time! ($@)" 1>&2 | |
fi | |
return $exitCode | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment