General operator arguments

All operators accept some common, optional, arguments that allow you to control how the operator is executed within your workflow.

The following table reports all the arguments that can be used with any operator.

NameTypeValue RestrictionsRequiredDefaultDescription

retries

integer

-

no

1

How many times a task can be re-executed in case of failures. If a task reaches the maximum number of retries and fails the entier workflow execution is aborted and the trial is considered failed.

retry_delay

string

string (supporting seconds, minutes and hours) int (seconds only)

no

5m

How much time to wait before retrying a failed task.

timeout

string

string (supporting seconds, minutes and hours) int (seconds only)

no

Infinite

The maximum time a task can run before considering a failure. If the timeout exceeds the task is considered failed.

Last updated