top of page

Execution progress saving enabled in n8n

  • Feb 13
  • 1 min read

What this means (non-technical)


Execution progress saving stores intermediate steps while a workflow is running. This stores intermediate state during execution, which can affect how workflow interruptions are handled depending on configuration, but it also increases database writes during execution.


It adds overhead to every run.

What usually goes wrong


When enabled on high-frequency workflows:


  • Database load increases.

  • Execution speed decreases slightly.

  • Storage usage grows faster.

  • Performance may degrade over time.


It can be helpful in specific cases, but leaving it on everywhere can quietly slow your system.


You may notice the system feels heavier without understanding why.

When this becomes urgent


This becomes urgent when:


  • Workflows run frequently.

  • Database performance is declining.

  • Storage costs increase.

  • You scale to higher volumes.


The more executions you run, the more overhead progress saving adds.

Detect issues in your n8n workflows

Upload your JSON to detect if any issue is present in your workflow

Definitions


  1. Execution progress saving: Storing workflow state during execution so it can potentially resume after failure.


  2. Database overhead: Additional load caused by extra read/write operations.


Disclaimer


This article highlights common patterns and risks seen in real-world n8n workflows. It’s meant to help you build more confidently and avoid surprises as your automation grows. Behavior can vary depending on your setup, version, and configuration.

Related Posts

See All
Timeout not configured in n8n

What this means (non-technical) If a workflow has no execution timeout configured, it can run indefinitely. If something gets stuck, there is nothing to automatically stop it. These long-running execu

 
 
Unthrottled loop HTTP in n8n

What this means (non-technical) This happens when an HTTP Request node sits inside a loop and sends requests as fast as possible. For every item, the workflow immediately makes another external API ca

 
 
Large JSON parsing in n8n

What this means (non-technical) This issue occurs when a workflow processes very large JSON responses. When n8n parses JSON, it loads the entire payload into memory. If the payload is very large, memo

 
 
bottom of page