Airflow Sensor: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= * https://airflow.apache.org/docs/apache-airflow/stable/concepts/sensors.html * https://airflow.apache.org/docs/apache-airflow/stable/concepts/smart-sensors.html *...") |
|||
Line 9: | Line 9: | ||
Also see [[Airflow_Concepts#Deferrable_Operators_and_Triggers|Deferrable Operators and Triggers]]. | Also see [[Airflow_Concepts#Deferrable_Operators_and_Triggers|Deferrable Operators and Triggers]]. | ||
=Sensor Types= | |||
==Poke== | |||
==Reschedule== | |||
==Smart Sensor== |
Revision as of 22:16, 17 July 2022
External
- https://airflow.apache.org/docs/apache-airflow/stable/concepts/sensors.html
- https://airflow.apache.org/docs/apache-airflow/stable/concepts/smart-sensors.html
- https://airflow.apache.org/docs/apache-airflow/2.0.0/concepts.html#sensors
Internal
Overview
A Sensor is a subclass of Operator that wait for an external event to happen.
Also see Deferrable Operators and Triggers.