Difference between revisions of "Exponential backoff"

From wikieduonline
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
[[wikipedia:Exponential backoff]]
 
[[wikipedia:Exponential backoff]]
  
 +
 +
 +
* [[AWS SDK]], https://docs.aws.amazon.com/general/latest/gr/api-retries.html
 
<pre>
 
<pre>
 
Do some asynchronous operation.
 
Do some asynchronous operation.

Latest revision as of 09:13, 11 November 2022

wikipedia:Exponential backoff


Do some asynchronous operation.

retries = 0

DO
    wait for (2^retries * 100) milliseconds

    status = Get the result of the asynchronous operation.

    IF status = SUCCESS
        retry = false
    ELSE IF status = NOT_READY
        retry = true
    ELSE IF status = THROTTLED
        retry = true
    ELSE
        Some other error occurred, so stop calling the API.
        retry = false
    END IF

    retries = retries + 1

WHILE (retry AND (retries < MAX_RETRIES))


See also[edit]

Advertising: