Skip to content

Commit a371469

Browse files
authored
add exponential backoff, and random offset (#84)
* add exponential backoff, and random offset * jitter is multiplicative, backoff actually exponential
1 parent 6ff9124 commit a371469

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

paraffin/stage.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import dataclasses
44
import json
55
import logging
6+
import random
67
import subprocess
78
import threading
89
import time
@@ -44,7 +45,7 @@ def cmd(self) -> str:
4445
return self.stage.cmd
4546

4647

47-
def retry(times, exceptions, delay: float = 0):
48+
def retry(times, exceptions, delay: float = 0, exponential: bool = True):
4849
"""
4950
Retry Decorator
5051
Retries the wrapped function/method `times` times if the exceptions listed
@@ -64,7 +65,9 @@ def newfn(*args, **kwargs):
6465
except exceptions as e:
6566
attempt += 1
6667
log.warning(f"Caught exception {e} - retrying {attempt}/{times}")
67-
time.sleep(delay)
68+
sleep_time = delay * (2.0**attempt) if exponential else delay
69+
sleep_time *= random.uniform(0, 1.0)
70+
time.sleep(sleep_time)
6871
return func(*args, **kwargs)
6972

7073
return newfn

0 commit comments

Comments
 (0)