# 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.

| Name          | Type    | Value Restrictions                                                          | Required | Default  | Description                                                                                                                                                                                          |
| ------------- | ------- | --------------------------------------------------------------------------- | -------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `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  | <p>string (supporting seconds, minutes and hours)<br>int (seconds only)</p> | no       | 5m       | How much time to wait before retrying a failed task.                                                                                                                                                 |
| `timeout`     | string  | <p>string (supporting seconds, minutes and hours)<br>int (seconds only)</p> | no       | Infinite | The maximum time a task can run before considering a failure. If the timeout exceeds the task is considered failed.                                                                                  |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.akamas.io/akamas-docs/3.3.1/akamas-reference/workflow-operators/general-operator-arguments.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
