Generator Node
Generator triggers workflow runs at fixed intervals.
Use it for polling jobs, housekeeping tasks, and scheduled automation.
Configuration Fields
| Field | Required | Default | Purpose |
|---|---|---|---|
| Interval | Yes | - | Time between executions |
| Start Time | No | immediate | Optional first-run timestamp |
| Repeat Count | No | 0/infinite | Number of executions |
| Enabled | No | true | Enable/disable schedule |
Setup Steps
- Add Generator node as workflow trigger.
- Set interval based on operational need.
- Configure repeat behavior.
- 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.
