JobStepExecutionOptions Class
The execution options of a job step.
Constructor
JobStepExecutionOptions(*, timeout_seconds: int = 43200, retry_attempts: int = 10, initial_retry_interval_seconds: int = 1, maximum_retry_interval_seconds: int = 120, retry_interval_backoff_multiplier: float = 2, **kwargs: Any)
Keyword-Only Parameters
| Name | Description |
|---|---|
|
timeout_seconds
|
Execution timeout for the job step. Default value: 43200
|
|
retry_attempts
|
Maximum number of times the job step will be reattempted if the first attempt fails. Default value: 10
|
|
initial_retry_interval_seconds
|
Initial delay between retries for job step execution. Default value: 1
|
|
maximum_retry_interval_seconds
|
The maximum amount of time to wait between retries for job step execution. Default value: 120
|
|
retry_interval_backoff_multiplier
|
The backoff multiplier for the time between retries. Default value: 2
|
Variables
| Name | Description |
|---|---|
|
timeout_seconds
|
Execution timeout for the job step. |
|
retry_attempts
|
Maximum number of times the job step will be reattempted if the first attempt fails. |
|
initial_retry_interval_seconds
|
Initial delay between retries for job step execution. |
|
maximum_retry_interval_seconds
|
The maximum amount of time to wait between retries for job step execution. |
|
retry_interval_backoff_multiplier
|
The backoff multiplier for the time between retries. |