Skip to main content
Workflow Dume.ai Delay node

Overview

The Delay Node pauses execution, then resumes with the next node. Useful for spacing actions, waiting for external processing, or creating timed sequences.
Workflow Dume.ai Delay node

Modes

  • Fixed duration: e.g. 30s, 5m, 2h, 1d
  • Until timestamp: waits until a specified future date/time
  • Dynamic: duration derived from prior node output (e.g. an API returns retryAfter)
  • Backoff/Jitter: expands delays on repeated retries to reduce contention

Configuration

FieldPurpose
ModeSelect fixed, until timestamp, dynamic, or backoff
Value / ExpressionDuration (e.g. 5m) or date/time (ISO) or variable reference
Max WaitSafety cap to prevent excessive holding
JitterRandomize delay within a range (e.g. ±10%)
Cancel On Condition (optional)Skip remaining wait if a condition becomes true
Tag (optional)Label for later audit or monitoring

Examples

Wait 10m then send follow‑up summary
Pause until 09:00 next business day
Use dynamic delay: /previous.retryAfter seconds
Backoff retry: start 30s, double up to 5m

Common Uses

  • Rate limiting API calls
  • Staggered notifications (meeting created → wait 1h → send recap)
  • Drip / nurture sequences
  • Retry after transient failure (paired with a Condition Node)
  • Cooling period before destructive actions

Best Practices

GoalTip
Avoid stale dataRe-fetch or validate state after long delays
ResilienceCombine with Condition Node to abort if context changes
PredictabilityPrefer fixed or until timestamp for scheduled handoffs
Efficient retriesUse exponential backoff + jitter, cap maximum delay

Troubleshooting

IssueFix
Workflow stuckCheck timestamp mode is in future; verify max wait
Delay ignoredEnsure mode configured; dynamic expression resolves to positive duration
Too longLower max wait or adjust backoff parameters
Wrong resume timeConfirm time zone and ISO format for timestamp mode
Long delays consume schedule capacity; split very long waits into shorter cycles with state checks if data may change.
Delay Node configured. Workflow will resume after the specified pause.