Reputation: 31
I want to schedule a databricks job that runs every day at 5:00 AM, 8:30 AM and 9:00 PM. I am looking for cron syntax.
Upvotes: 1
Views: 1022
Reputation: 7156
Schedule a time to trigger the notebook in Edit Schedule
0 0 5,21 ? * *
as CRON syntax to run at 5:00AM and 9:00PM.0 30 8 ? * *
as CRON syntax.
Minutes must be same for all the timings to schedule a trigger to run the notebook with single job, as per the requirement there is no other option to run with single job we must go for two jobs.
Upvotes: 0