I am designing a reconciliation job flow in Airflow 2.3.3 where the parent dags can trigger same child dag using TriggerDagOperator.
The child dag must somehow understand its parent name and accordingly read the parameter values from json file for further processing.
The flow should be like
DAG_P1 => DAG_C1 => read p1 params
DAG_P2 => DAG_C1 => read p2 params
How to achieve that ?
Please let me know if you need the sample code I have tried.
Thanks, Santanu