I have these Dags DAG_A (runs daily) , DAG_B (runs mon-fri) and DAG_C (runs on sat and sun) where DAG_A is dependent on both DAG_B and DAG_C. I tried setting the dependencies using External Task Sensor but everytime my scheduler stops running and any of Dags aren't succeeding
Asked
Active
Viewed 629 times
3
-
Hi Lalitha and welcome to StackOverflow! From your description it is hard to understand what you are trying to achieve and what the problem is. Please consider reading up on [MCVE](https://stackoverflow.com/help/minimal-reproducible-example) and [How-To-Ask](https://stackoverflow.com/help/how-to-ask) – SergiyKolesnikov May 29 '20 at 15:44
-
1Did you find an answer ? – linSESH Feb 19 '21 at 09:20
1 Answers
0
You can try to use TriggerDagRunOperator for calling one DAG from another.
The details can be found in operator TriggerDagRunOperator Airflow documentation.
call DAG_A from DAG_B and DAG_C when they finish the run.

Tommy
- 134
- 9