Skip to content

Commit

Permalink
remove config example
Browse files Browse the repository at this point in the history
  • Loading branch information
StarfallProjects committed Feb 12, 2024
1 parent 6b14b1e commit b9b723f
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions docs/hosting/environment-variables/configuration-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,20 +143,6 @@ In queue mode, you must specify the encryption key environment variable for all
export N8N_ENCRYPTION_KEY=<SOME RANDOM STRING>
```

### Execute all workflows in the same process

/// warning | Deprecated
n8n deprecated `own` mode and the `EXECUTIONS_PROCESS` flag in version 1.0. n8n will remove these in a future release. Main mode is now the default, so this step isn't needed for version 1.0 and above.

Use [Queue mode](/hosting/scaling/queue-mode/) if you need full execution isolation.
///

All workflows run in their own separate process. This ensures that all CPU cores get used and that they don't block each other on CPU intensive tasks. It also makes sure that one execution crashing doesn't take down the whole application. The disadvantage is that it slows down the start-time considerably and uses much more memory. If your workflows aren't CPU intensive, and they have to start very fast, it's possible to run them all directly in the main-process with this setting.


```bash
export EXECUTIONS_PROCESS=main
```

### Execution timeout

Expand Down

0 comments on commit b9b723f

Please sign in to comment.