BigData / Apache Airflow Interview Questions
What are Airflow Providers?
Providers (formerly contrib) are installable packages that extend Airflow with operators, hooks, sensors, and connections for third-party services. They are published separately from the core Airflow package, so you install only what you need.
Example providers:
apache-airflow-providers-amazon— AWS (S3, Redshift, EMR, etc.)apache-airflow-providers-google— GCP (BigQuery, GCS, Dataflow, etc.)apache-airflow-providers-databricks— Databricks jobsapache-airflow-providers-apache-spark— Spark submit and Livy operators
Install via pip: pip install apache-airflow-providers-amazon.
More Related questions...