through my recent research I've come to realise that the schedule_interval
for airflow has some quirks and I've done my best to try and interpret how it may be affecting what I'm doing, but haven't quite managed to work it out.
I'm using these default args:
default_args = {
'owner': 'airflow',
'depends_on_past': False,
'start_date': datetime(2019, 1, 12),
'email': ['email@domain.com'],
'email_on_failure': True,
'email_on_retry': False,
'retries': 0,
'retry_delay': timedelta(minutes=5),
'schedule_interval': '0 0,12 * * *'
}
and I would like the DAG to run at midnight and noon.
Currently it only runs at midnight and I can't understand why. I'm running this in Google Cloud Composer if that makes any difference.
*edit - fixed typo