airflow.sensors.time_delta
¶
Module Contents¶
Classes¶
Waits for a timedelta after the run's data interval. |
|
A drop-in replacement for TimeDeltaSensor that defers itself to avoid |
- class airflow.sensors.time_delta.TimeDeltaSensor(*, delta, **kwargs)[source]¶
Bases:
airflow.sensors.base.BaseSensorOperator
Waits for a timedelta after the run’s data interval.
- Parameters
delta (datetime.timedelta) – time length to wait after the data interval before succeeding.
- class airflow.sensors.time_delta.TimeDeltaSensorAsync(*, delta, **kwargs)[source]¶
Bases:
TimeDeltaSensor
A drop-in replacement for TimeDeltaSensor that defers itself to avoid taking up a worker slot while it is waiting.
- Parameters
delta (datetime.timedelta) – time length to wait after the data interval before succeeding.