system.runtime.load_retry
system.runtime.load_retry is a variable to set retry definition for a failed load execution. Can be set on environment level with CONFIG_ENVIRONMENT_VARIABLES and on schedule level with CONFIG_LOAD_SCHEDULES.
See also:
Usage
system.runtime.load_retry : {"retries": "2", "wait_max_seconds": "10", "wait_min_seconds":"5", "backoff_factor": "2"}
Default: There is no load retries by default
Notes
There is also an load level load option:
OPT_LOAD_RETRY
That works on load level with the same retry parameters.
This is available from the release 25.2.639 onwards
Parameters
Parameter | Description | Required parameter | Default value |
|---|---|---|---|
backoff_factor | The exponential coefficient for backoff wait seconds | No | 2 |
retries | Total number of retries | Yes | |
wait_min_seconds | Minimum wait seconds. The first wait value | No | 1 |
wait_max_seconds | Maximum waiting seconds. Value will not be exceeded by the backoff | Yes |