mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 00:24:07 -08:00
Clarify
This commit is contained in:
parent
b07171022e
commit
e0424ce961
|
@ -4,11 +4,12 @@ import { Config, Env } from '../decorators';
|
|||
* Modes for running a task runner:
|
||||
*
|
||||
* - In `internal_childprocess` mode, n8n launches a task runner as a child
|
||||
* process and manages its lifecycle.
|
||||
* - In `internal_launcher` mode, n8n runs an executable that launches a task
|
||||
* runner as a child process and manages its lifecycle.
|
||||
* process. n8n manages the runner's lifecycle.
|
||||
* - In `internal_launcher` mode, n8n runs an
|
||||
* [executable](https://github.com/n8n-io/task-runner-launcher) that launches
|
||||
* a task runner as a child process. n8n manages the runner's lifecycle.
|
||||
* - In `external` mode, n8n does not launch the runner or manage its lifecycle.
|
||||
* Rather, a third party launches the runner separately from n8n.
|
||||
* Rather, a third party launches and manages the runner separately from n8n.
|
||||
*
|
||||
* Lifecycle management means that n8n launches the task runner only when needed
|
||||
* and shuts it down when the task runner has been idle for too long.
|
||||
|
|
Loading…
Reference in a new issue