Generator Node

Generator triggers workflow runs at fixed intervals.

Use it for polling jobs, housekeeping tasks, and scheduled automation.

Configuration Fields

FieldRequiredDefaultPurpose
IntervalYes-Time between executions
Start TimeNoimmediateOptional first-run timestamp
Repeat CountNo0/infiniteNumber of executions
EnabledNotrueEnable/disable schedule

Setup Steps

  1. Add Generator node as workflow trigger.
  2. Set interval based on operational need.
  3. Configure repeat behavior.
  4. Connect to action path.

Best Practices

  • Align interval with downstream capacity.
  • Add backoff/fallback handling for external calls.
  • Avoid overly frequent schedules in production.

Common Issues

  • Too many executions: interval too small.
  • No execution: node disabled or start time in future.