Airflow Xcom Exclusive ⚡
: Only pass metadata (IDs, dates, paths) via XCom. Use them as "pointers" to larger data stored elsewhere.
trigger = TriggerDagRunOperator( task_id='trigger_other', trigger_dag_id='consumer_dag', conf="xcom_value": " ti.xcom_pull(task_ids='producer_task') " ) airflow xcom exclusive
For more technical details on implementation, check out the official XComs Guide on the Apache Airflow site. : Only pass metadata (IDs, dates, paths) via XCom