How to retrieve a value from Airflow XCom pushed via SSHExecuteOperator
问题 I have the following DAG with two SSHExecuteOperator tasks. The first task executes a stored procedure which returns a parameter. The second task needs this parameter as an input. Could please explain how to pull the value from the XCom pushed in task1, in order to use it in task2? from airflow import DAG from datetime import datetime, timedelta from airflow.contrib.hooks.ssh_hook import SSHHook from airflow.contrib.operators.ssh_execute_operator import SSHExecuteOperator from airflow.models