Schedule
Schedule tab will be available for cron applications. A schedule defines how often and when the cron application will run. It can be defined using the following parameters:
- Cron Expression (required): A string specifying the timing details such as minute, hour, day of month, month, day of week for when to run the job.
info
Example: The value "* * * * *" would run the job every minute.
tip
You can use https://crontab.guru/ to generate cron expressions.
- Timezone (required): The timezone in which the schedule should be executed. For example, "Asia/Kolkata", "Antarctica/Macquarie", etc.
- Retries upon failure (optional): The number of times the job should be retried upon failure. If not specified, the job will not be retried on failure.
- Maximum run time in seconds (optional): The maximum duration in seconds the job is allowed to run before it is considered timed out. If not specified, the job will not have any time out.