Job Scheduling Overview

The format of the schedule is a standard crontab.

# ┌───────────── minute (always zero)
# │ ┌───────────── hour (always zero)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12)
# │ │ │ │ ┌───────────── day of the week (0 - 6) (0 is Sunday to 6 as Saturday Saturday)
# │ │ │ │ │
# │ │ │ │ │
# 0 0 * * *

Exports can only be executed on a daily basis so the input value for minutes and hours will be ignored if specified. Here are some examples of some commonly used cron strings:

Examples

Cron Description
0 0 1 * * Runs on the first day of every month
0 0 * * 1 Runs weekly on Monday
0 0 * * 0,3 Runs weekly on Sunday and Wednesday
0 0 * * * Runs every day