Hey guys,
I want to create a DAG that will run daily at 7am UTC. What’s the best practice to define the start_date and schedule_interval?
start_date = datetime(2021, 12, 21)
schedule_interval = "00 07 * * *"
or
start_date = datetime(2021, 12, 21, 7)
schedule_interval = "@daily"