Download and Upload large Video files to BunnyNet - Out of Memory error

Describe the problem/error/question

II’m currently trying to build a workflow where people can put videos (200 - 700mb) in a Google Drive folder and they are automatically downloaded at midnight to upload directly to Bunny Net.

My question would be, what is the best way to solve this without necessarily upgrading my n8n pact or is that not even possible?

What is the error message (if any)?

That is my Error Message:
Problem in node ‘Schedule Trigger‘

There might not be enough memory to finish the execution. Tips for avoiding this here

Information on your n8n setup

  • n8n version: 1.58.2
  • Database (default: SQLite): /
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app): n8n cloud
  • Operating system: /

Hi @IT-extra

Thanks for posting here and welcome to the community! :partying_face:

You could try to split your download and upload operations into sub-workflows and have them handle one file at the time (loop).
This way the memory gets cleared after each iteration (sub-workflow finish) and your consumption doesn’t pile up with each file.

It also helps for memory conservation to disable saving executions in your workflow settings.