BigData / Apache Airflow Interview Questions
What is XCom in Airflow and how is it used?
XCom (cross-communication) is a mechanism that lets tasks exchange small amounts of data. A task can push a value into XCom and a downstream task can pull it.
def push_func(**context):
context['ti'].xcom_push(key='result', value=42)
def pull_func(**context):
val = context['ti'].xcom_pull(task_ids='push_task', key='result')
print(f'Received: {val}')
XCom values are stored in the metadata database, so they should be used for small payloads (strings, numbers, short dicts). Passing large dataframes through XCom is an anti-pattern — use a shared storage layer such as S3 or GCS instead.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
