I want to run my main workflow while a timer counts down in parallel (non-blocking). Concretely:
-
Start the workflow.
-
Immediately start a timer (e.g., 10 minutes) in the background.
-
Let the main workflow continue doing its tasks.
-
When the timer expires, trigger a follow-up action (e.g., send a message or call another workflow) without pausing the main flow.
I understand that the Wait node is designed to pause the workflow until the specified time is reached, but in my case I’m looking for something different
What’s the recommended pattern for a parallel, non-blocking timer?
Information on your n8n setup
- n8n version: n8n cloud

