Skip to content

Instantly share code, notes, and snippets.

@InTheCloudDan
Created November 7, 2017 01:03
Show Gist options
  • Save InTheCloudDan/6ea4affdfd3c8183be1a680ad7ea725a to your computer and use it in GitHub Desktop.
Save InTheCloudDan/6ea4affdfd3c8183be1a680ad7ea725a to your computer and use it in GitHub Desktop.
+AWS_BACKOFF_BASE_EXPONENT:
+ name: Set base of the exponent to use for exponential backoff.
+ default: 2
+ description: Set base of the exponent to use for exponential backoff.
+ env:
+ - name: AWS_BACKOFF_BASE_EXPONENT:
+ ini:
+ - {key: backoff, section: aws_backoff }
+ type: int
+AWS_BACKOFF_DELAY:
+ name: Set default delay for AWS retries
+ default: 3
+ description: Sets the default delay for AWS backoff strategy
+ env:
+ - name: AWS_BACKOFF_DELAY:
+ ini:
+ - {key: delay, section: aws_backoff }
+ type: int
+AWS_BACKOFF_MAX_DELAY:
+ name: Max possible delay between attempts.
+ default: 60
+ description: Set max possible delay between retry attempts.
+ env:
+ - name: AWS_BACKOFF_BASE_EXPONENT:
+ ini:
+ - {key: max_delay, section: aws_backoff }
+ type: int
+AWS_BACKOFF_RETRIES:
+ name: Set default number of retries
+ default: 10
+ description: Sets the default number of retries for AWS backoff strategy
+ env:
+ - name: AWS_BACKOFF_RETRIES:
+ ini:
+ - {key: retries, section: aws_backoff }
+ type: int
+AWS_BACKOFF_STRATEGY:
+ name: Set default AWS backoff strategy
+ default: exponential
+ description: Sets the default value for AWS retry backoff strategy
+ env:
+ - name: AWS_BACKOFF_STRATEGY:
+ ini:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment