prefect.utilities.services
critical_service_loop(workload, interval, memory=10, consecutive=3, backoff=1, printer=print, run_once=False, jitter_range=None)
async
Runs the given workload
function on the specified interval
, while being
forgiving of intermittent issues like temporary HTTP errors. If more than a certain
number of consecutive
errors occur, print a summary of up to memory
recent
exceptions to printer
, then begin backoff.
The loop will exit after reaching the consecutive error limit backoff
times.
On each backoff, the interval will be doubled. On a successful loop, the backoff
will be reset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
workload
|
Callable[..., Coroutine]
|
the function to call |
required |
interval
|
float
|
how frequently to call it |
required |
memory
|
int
|
how many recent errors to remember |
10
|
consecutive
|
int
|
how many consecutive errors must we see before we begin backoff |
3
|
backoff
|
int
|
how many times we should allow consecutive errors before exiting |
1
|
printer
|
Callable[..., None]
|
a |
print
|
run_once
|
bool
|
if set, the loop will only run once then return |
False
|
jitter_range
|
Optional[float]
|
if set, the interval will be a random variable (rv) drawn from
a clamped Poisson distribution where lambda = interval and the rv is bound
between |
None
|
Source code in src/prefect/utilities/services.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
|
start_client_metrics_server()
Start the process-wide Prometheus metrics server for client metrics (if enabled
with PREFECT_CLIENT_METRICS_ENABLED
) on the port PREFECT_CLIENT_METRICS_PORT
.
Source code in src/prefect/utilities/services.py
161 162 163 164 165 166 167 168 169 170 171 172 173 |
|
stop_client_metrics_server()
Start the process-wide Prometheus metrics server for client metrics, if it has previously been started
Source code in src/prefect/utilities/services.py
176 177 178 179 180 181 182 183 184 |
|