Not a question but my noob implementation of a wait loop

Describe the problem/error/question Normal wait apparently stall other branches. So this is my noob implementation of a wait loop. Suggestions for improvement are really welcome.

What is the error message (if any)? None

Please share your workflow

Share the output returned by the last node

Information on your n8n setup

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

Hi @Jitse_Schaafsma,

It depends on what you’re trying to achieve,

In your workflow, the loop processes 5 items (batch size = 5), then calls the sub-workflow (maybe your wait is inside it), and then processes the next 5 items..

You’ll probably want to look at this template as well, it explains asynchronous processing with a wait step very clearly:

1 Like