tree: d9e3ccdc53a5f05040ceb00eed5cae97cd43ada1 [path history] [tgz]
  1. __init__.py
  2. base.py
  3. bash.py
  4. date_time.py
  5. external_task.py
  6. filesystem.py
  7. python.py
  8. README.md
  9. time_delta.py
  10. time_sensor.py
  11. weekday.py
airflow/sensors/README.md

Airflow Sensors

Airflow Sensors are a special kind of Airflow Operator. When they run, they check to see if a certain criteria is met before they complete and let their downstream tasks execute. They are primarily used to enable portions of your DAG to wait for some criteria to be fulfilled by an external system.

The Sensors contained within this directory are core Airflow Sensors. They are included by default in any Airflow implementation. For other available sensors that have been built by the community, please see the providers directory.