Delay Node

Delay pauses execution for a specified duration.

Use it to enforce pacing, wait windows, and temporal coordination.

Configuration Fields

FieldRequiredPurpose
DurationYesNumeric delay value
UnitYesTime unit (ms/s/min/hr)

Best Practices

  • Keep delay usage intentional and documented.
  • Avoid long blocking paths on high-volume flows.
  • Combine with retry logic for external dependencies.

Common Issues

  • Throughput drops from excessive delay usage.
  • Unexpected latency in chained delay nodes.