concept triggerdagrunoperator in category apache airflow
appears as: TriggerDagRunOperator, The TriggerDagRunOperator

This is an excerpt from Manning's book Data Pipelines with Apache Airflow MEAP V05.
This scenario can be achieved with the TriggerDagRunOperator. This operator allows triggering other DAGs, which you can apply for decoupling parts of a workflow:
![]()
The string provided to the trigger_dag_id argument of the TriggerDagRunOperator must match the dag_id of the DAG to trigger. The end result is that we now have two DAGs, one for ingesting data from the supermarkets and one for computing metrics on the data: