Condividi tramite


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
int

Execution timeout for the job step.

Default value: 43200
retry_attempts
int

Maximum number of times the job step will be reattempted if the first attempt fails.

Default value: 10
initial_retry_interval_seconds
int

Initial delay between retries for job step execution.

Default value: 1
maximum_retry_interval_seconds
int

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
int

Execution timeout for the job step.

retry_attempts
int

Maximum number of times the job step will be reattempted if the first attempt fails.

initial_retry_interval_seconds
int

Initial delay between retries for job step execution.

maximum_retry_interval_seconds
int

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.