This commit is contained in:
Maxime Beauchemin 2015-10-05 16:30:22 -07:00
Родитель bc5ee8ed73
Коммит 5648e86972
1 изменённых файлов: 19 добавлений и 2 удалений

Просмотреть файл

@ -31,6 +31,15 @@ DAGs.
.. autoclass:: airflow.models.BaseOperator
BaseSensorOperator
'''''''''''''''''''
All sensors are derived from ``BaseSensorOperator``. All sensors inherit
the ``timeout`` and ``poke_interval`` on top of the ``BaseOperator``
attributes.
.. autoclass:: airflow.operators.sensors.BaseSensorOperator
Operator API
''''''''''''
@ -163,7 +172,7 @@ Hooks
S3Hook,
SqliteHook
Community Contributed Hooks
Community contributed hooks
'''''''''''''''''''''''''''
.. automodule:: airflow.contrib.hooks
@ -178,4 +187,12 @@ Executors are the mechanism by which task instances get run.
.. automodule:: airflow.executors
:show-inheritance:
:members: LocalExecutor, CeleryExecutor, SequentialExecutor, MesosExecutor
:members: LocalExecutor, CeleryExecutor, SequentialExecutor
Community contributed executors
'''''''''''''''''''''''''''''''
.. automodule:: airflow.contrib.executors
:show-inheritance:
:members:
MesosExecutor