Describe the problem/error/question
Two problems on the same Cloud instance. They may well be related.
Issue A - executions stuck in the queue since 2026-07-01
Several executions entered the concurrency queue on 2026-07-01 at 00:52:48-00:52:51 CEST and have never left it. They never transitioned to Running. I cannot cancel or stop them from the UI, and I cannot force them to start. The executions overview reports no active executions while these entries sit there as “Queued / Starting soon”.
This has now been the case for over a month.
Example stuck execution: 698563
Issue B - OOM crashes on 2026-08-01
On 2026-08-01 at around 00:52 CEST, a single third-party system delivered approximately 70 webhook calls within 30 seconds to workflow IJ2lzInmEthm4e22. That is 2.33 requests per second. A large number of executions then failed with an out-of-memory error, i.e. the instance process was OOM-killed and restarted, repeatedly.
Example failed execution: 778602
What is the error message (if any)?
For Issue B:
Execution stopped at this node
n8n may have run out of memory while running this execution.
Timestamp in the error detail: 1.8.2026, 00:54:07
n8n version shown in the error detail: 2.32.7 (Cloud)
For Issue A there is no error message at all. The executions simply never start.
Information on your n8n setup
- n8n version: 2.32.7
- Running n8n via: n8n Cloud
- Instance: - will not share here -
- Operating system: n8n Cloud
Additional context
The webhook node is set to “Respond Immediately”, so the HTTP response does not extend execution time. No manual executions were running. The monthly execution quota was not exhausted.
2.33 requests per second is a trivial rate. At any plan’s concurrency limit, a burst of this size should produce nothing worse than a short backlog that drains within roughly a minute - which is exactly what the concurrency queue is documented to do: executions beyond the limit queue up and are processed in FIFO order as capacity frees up. Instead it produced process-level OOM crashes.
Issue A is not specific to my instance. It matches GitHub issues #23675 and #24594 and several community reports, in which n8n support confirmed this class of problem is not user-fixable and has to be escalated internally.
What I need
-
The orphaned queued executions from 1 July cleared. The documentation states that queued executions cannot be retried and that cancelling or deleting one also removes it from the queue. Neither works here, so this needs action on the n8n side. I am not going to work around it via the public API on a production instance.
-
A root cause explanation for Issue A. Is the queue recovery path a known defect? Is a fix shipped or planned, and in which version? An execution that cannot be started, stopped or removed by the account owner for a month is not an acceptable state for a managed product.
-
For Issue B: there is evidently no per-execution memory isolation on Cloud, so one memory-heavy execution can OOM the shared process and take down every other execution running in it. A managed plan that advertises a concurrency limit has to be able to actually run that many concurrent executions without the process dying. This is a dimensioning and isolation problem on the platform side and it needs to be fixed there.