Executions#
An execution is a single run of a workflow.
Execution modes#
There are two execution modes:
- Manual: Run workflows manually by clicking Execute Workflow. Unpublish workflows while testing through manual runs.
- Production: Production workflows run automatically. Publish a version of the workflow to put it into production.
How executions count towards quotas:#
Paid plans, whether cloud or self-hosted, have an execution limit quota. Only production executions count towards this quota. These are executions started automatically by triggers, schedules, or polling. Manual executions, sub-workflows, and error workflows aren't counted. This distinction applies regardless of the instance environment, such as development or production.
Execution count by trigger type#
The way executions are counted depends on the type of trigger node used:
- Schedule Trigger nodes: Count one execution every time the node fires, regardless of outcome.
- Polling nodes (like Google Drive Trigger): Count one execution only when new data is found. Polls that return no results don't count as an execution.
- Webhook Trigger nodes: Count one execution for every inbound request that activates the trigger. This includes requests with an empty body (such as
{}). Malformed requests that fail before the workflow starts don't count as an execution.
Execution lists#
n8n provides two execution lists:
- Workflow-level executions: this execution list shows the executions for a single workflow.
- All executions: this list shows all executions for all your workflows.
n8n supports adding custom data to executions.
Execution data redaction#
You can redact execution data to protect sensitive information. Redaction hides the input and output data of workflow executions while preserving execution metadata like status, timing, and node names. Refer to Execution data redaction for details.