incubator-airflow/airflow/providers
Kaxil Naik bc4bb30588
Fix docstrings for Kubernetes Backcompat module (#12422)
This were missed in https://github.com/apache/airflow/pull/12384
2020-11-18 01:01:19 +00:00
..
amazon Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
apache Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
celery Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
cloudant Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
cncf Fix docstrings for Kubernetes Backcompat module (#12422) 2020-11-18 01:01:19 +00:00
databricks Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
datadog Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
dingding Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
discord Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
docker Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
elasticsearch Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
exasol Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
facebook Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
ftp Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
google Adds mechanism for provider package discovery. (#12383) 2020-11-17 18:48:57 +01:00
grpc Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
hashicorp Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
http Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
imap Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
jdbc Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
jenkins Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
jira Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
microsoft Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
mongo Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
mysql Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
odbc Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
openfaas Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
opsgenie Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
oracle Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
pagerduty Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
papermill Improvements for operators and hooks ref docs (#12366) 2020-11-15 00:50:30 +01:00
plexus Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
postgres Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
presto Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
qubole Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
redis Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
salesforce Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
samba Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
segment Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
sendgrid Docs installation improvements (#12304) 2020-11-13 09:38:54 +01:00
sftp Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
singularity Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
slack Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
snowflake Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
sqlite Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
ssh Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
vertica Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
yandex Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
zendesk Update wrong commit hash in backport provider changes (#12390) 2020-11-17 10:29:14 +01:00
README.md Add providers, operators, and hooks readmes (#11829) 2020-10-27 15:27:21 -04:00
dependencies.json Add Compute Engine SSH hook (#9879) 2020-11-10 02:20:38 +01:00

README.md

Airflow Providers

Providers are logical abstractions of submodules that can be used to interface with various tools and endpoints from your Airflow DAGs. Each provider is grouped by the relevant top-level service that a user might need to interact with and submodules for specific forms of interaction, including hooks, operators, sensors, and transfers, exist within each provider directory.

Using Providers

As of Airflow 2.0, the provider packages contained in this subdirectory will be versioned and released independently of the core Airflow codebase. That means that, in order to use the submodules contained within these provider directories, a user will need to install the relevant provider python package into their Airflow environment. The relevant pip commands to install these providers and their submodules are documented in READMEs within each provider subdirectory.

Note that this does not mean that all Airflow operators will be abstracted away into python packages- core Airflow hooks and operators that exist in airflow/operators and airflow/hooks will continue to be included in core Airflow releases and directly accessible within any Airflow environment.