How to configure the Airflow dag to execute at specified time on daily basis no matter what happens, something exactly like crons.
I know that similar behaviour could be obtained using TimeSensor, but in this case it depends upon the sensor tasks and which might conflict with the dag execution time.
Example: With sensor approach if I have sensor to run at 0 hour 15th minutes but if dag is executed at later then my task is delayed, so even for the sensor approach I need to make sure that the Dag is executed on right time.
So how to make sure that Dag is executed at specified time?
schedule_interval='0 24 * * *'
doesn't work for me, got a nuclear bomb blast ascii art and the following error message:CroniterBadCronError: [0 24 * * * ] is not acceptable, out of range
– Dyson