'Run airflow on schedule that can't be specified with cron

I have a number of jobs that are currently being scheduled with multiple cron schedules.

For example, I have a job that runs on: 35 9,13,16 * * mon-fri & 40 16 * * mon-fri

I would like to have 1 dag with the schedule, run at 9:35, 13:35, 16:35, 16:40 mon-fri. Is it possible to do this with airflow/cron?



Solution 1:[1]

You can do it with custom timetables https://airflow.apache.org/docs/apache-airflow/stable/howto/timetable.html

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Javier Lopez Tomas