Feeder Scheduling¶
This section is to emphasize Feeder scheduling. Please be aware that some screens are taken from the original Quartz Scheduler website that is listed under Additional Resources. In addition, another external Cronmaker tool is provided.
Cron Introduction¶
Cron Format & Samples¶
Cron Builder in Feeder¶
This feature shall help to fill in the correct syntax when configuring schedules in the Feeder.
Therefore please navigate to:
To open the Cron Builder feature, please click on the cogwheel symbol.
The following screen demonstrates the initial state of the tool when opening the feature.
- When clicking the OK button, the inital schedule would be [0 * * * * ?].
- Thus, it would run on a daily basis, every minute and never come to an end.
Set a Specific Point In Time¶
Daily at 14:00 o’clock
- Syntax: [0 0 14 * * ?]
- Ends after one execution per day
Set a Repetitive Execution¶
Daily, every 5 minutes as of 14:00 o’clock
- Syntax: [0 0/5 14 * * ?]
- Ends when it will be 15 o’clock
Daily, every 5 minutes as of 14:10 o’clock
- Syntax: [0 10/5 14 * * ?]
- Ends when it will be 15 o’clock
Daily, every 1 hour as of the full hour
- Syntax: [0 * 0/1 * * ?]
- Never ends