OPT_LOAD_RETRY is a load option to set retry definition for a failed load execution.
See also:
Usage
OPT_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 environment and schedule level variable
system.runtime.load_retry
That works on environment or schedule 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 |
|