astronomer.providers.core.triggers.filesystem¶
Classes¶
A trigger that fires exactly once after it finds the requested file or folder. |
Module Contents¶
- class astronomer.providers.core.triggers.filesystem.FileTrigger(filepath, recursive=False, poll_interval=5.0)[source]¶
Bases:
airflow.triggers.base.BaseTriggerA trigger that fires exactly once after it finds the requested file or folder.
- Parameters:
filepath (str) – File or folder name (relative to the base path set within the connection), can be a glob.
recursive (bool) – when set to
True, enables recursive directory matching behavior of**in glob filepath parameter. Defaults toFalse.
- filepath¶
- recursive¶
- poll_interval¶