We are using airflow 2.00. I am trying to implement a DAG that does two things:
- Trigger Reports via API
- Download reports from source to destination.
There needs to at least 2-3 hours gap between tasks 1 and 2. From my research I two options
- Two DAGs for two tasks. Schedule the 2nd DAG two hour apart from 1st DAG
- Delay between two tasks as mentioned here
Is there a preference between the two options. Is there a 3rd option with Airflow 2.0? Please advise.