The scheduling in Airflow can be kind of tricky and is certainly different from cron scheduling. I want to schedule a DAG on two specific days per month which is possible with following cron expression 0 0 12,25 * *
I tried the schedule interval equal to this cron expression.
For example schedule_interval='0 0 12,25 * *'
, but that doesn't appear to work.
I am wondering if this kind of schedule is supported by Airflow within a single DAG? What approach could I take to schedule a DAG on two specific days each month?