Workflow crash for unknown reason when trigger by CRON

Describe the issue/error/question

Hello,

I create a workflow to import data from one system to another. This workflow is divide in 2 different workflow :

  • Main Workflow : Trigger by a CRON
  • Sub Workflow : Trigger by the Main Workflow to do the computation

This entire workflow works well when I trigger it manually from the N8N interface. But with the CRON it always crashes with the error : “Workflow execution process did crash for an unknown reason!” after one successful Sub workflow iteration.

We already check that the pod is not restarting and there is still memory and cpu available when the error is triggered ! Can you help me on how I can investigate this issue ?

Please share the workflow

I cannot share the workflow for confidential reasons but here are some screenshots

Main workflow

Sub workflow

Cron settings

Error message

Information on your n8n setup

  • n8n version: 0.183.0
  • Database you’re using (default: SQLite): Postgres
  • Running n8n via [Docker, npm, n8n.cloud, desktop app]: Docker

After testing triggering the main workflow using a webhook I get the same result : Workflow execution process did crash for an unknown reason! after the first iteration.

Hi @aburio, I am very sorry to hear you’re having trouble. Could you check the docker logs for your n8n instance? Is there any additional indicator as to what might have happened?

Does this happen for all of your workflows using the Cron node (and even for cases where no other node is being used in your workflow)?

Hi @MutedJam,

According to logs it’s a heap out of memory !

Jun 22, 2022 @ 15:16:07.101	<--- Last few GCs --->
Jun 22, 2022 @ 15:16:07.101	FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
Jun 22, 2022 @ 15:16:07.101	[41:0x7fc3060ba330]    50988 ms: Scavenge 1018.7 (1038.9) -> 1017.9 (1043.4) MB, 2.6 / 0.0 ms  (average mu = 0.266, current mu = 0.216) allocation failure 
Jun 22, 2022 @ 15:16:07.101	[41:0x7fc3060ba330]    52623 ms: Mark-sweep (reduce) 1019.8 (1043.4) -> 1019.1 (1038.4) MB, 1078.1 / 0.1 ms  (+ 545.1 ms in 31 steps since start of marking, biggest step 73.1 ms, walltime since start of marking 1635 ms) (average mu = 0.172, current mu = 0
Jun 22, 2022 @ 15:16:07.101	<--- JS stacktrace --->

What is strange is that we still have memory available…

Oh, so running out of memory would explain why n8n shows an unknown reason (as it is not aware of the memory consumption).

It’s odd this doesn’t happen when manually executing your workflow though. Is there a chance you were processing different amounts of data when manually executing your flow compared to the production execution?

No exactly the same amount of data.

I request payload from one API, check if data are different from the one we currently have from the other API, update change.

We try to change the Node JS setting ENV NODE_OPTIONS=--max_old_space_size=2048 but we still get the same error !

Hm, that’s really odd. I have processed large amounts of data with n8n in the past without trouble, as long as enough memory was available.

Which docker image exactly are you using and is there a chance you can share a simplified workflow using which this problem can be reproduced?

Did this start just recently or were you also facing this problem with n8n versions before 0.183.0?

Ok so we found the solution by increasing RAM size to 4Go. But still strange that it works with 2Go of RAM when trigger from the UI.

There is no way to use storage for data processing instead of RAM ?

We have the exact same issue in the exact same use-case in v0.201.0, the amount of data returned is extremely low and far from what our other workflows can handle. It still breaks on every CRON trigger but never on a manual execution.
(Sadly cannot share the workflow for confidential reasons either)

Hi @Eliott_Audry, I am very sorry for this. Without a reproducible example it’s really hard to understand what be happening here.

That said, n8n has changed a bit in the past and the Schedule trigger node has been introduced to replace the Cron node. Perhaps you can verify on your end whether this issue still persists on the latest available version of n8n when using the Schedule node instead of the Cron one?

Hi @MutedJam !
Good call, sadly it is still an issue with the Schedule node update.
I keep investigating and will update in case I pinpoint the issue.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.