# Activation Strategies

Workflows can be configured with an **activation strategy**, which controls whether a given workflow can be executed or not. For example, the *Always* strategy will always allow the workflow to be executed, while the *Singleton* strategy will only allow the workflow to be executed if an existing workflow instance isn't already in the *Running* state.

Out of the box, Elsa ships with the following activation strategies:

<table><thead><tr><th>Strategy</th><th width="394">Description</th></tr></thead><tbody><tr><td>Always</td><td>Always allow the workflow to execute.</td></tr><tr><td>Singleton</td><td>Only allow the workflow to execute if there isn't already an instance of the same workflow running.</td></tr><tr><td>Correlation</td><td>Only allow the workflow to execute with a given correlation ID if there isn't already any other workflow running with the same correlation ID.</td></tr><tr><td>Correlated Singleton</td><td>Only allow the workflow to execute with a given correlation ID if there isn't already an instance of the same workflow running with the same correlation ID.</td></tr></tbody></table>


---

# 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.elsaworkflows.io/operate/workflow-activation-strategies.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.
