I have a Airflow DAG with around 10 tasks in it.
So now, I have another two tasks to execute only after execution of all these 10 tasks earlier.
Can you help me with this case.
I have a Airflow DAG with around 10 tasks in it.
So now, I have another two tasks to execute only after execution of all these 10 tasks earlier.
Can you help me with this case.
You can specify in your dag all the dependencies between your tasks with the right-bitshift operator.
Example for 3 tasks (make it up to your 10 tasks) :
[task1, task2, task3] >> final_task
See this post for more info.