When does a airflow dag definition get evaluated?

前端 未结 2 1189
旧巷少年郎
旧巷少年郎 2021-01-24 02:08

Suppose I have an airflow dag file that creates a graph like so...

def get_current_info(filename)
    current_info = {}
           


        
2条回答
  •  执笔经年
    2021-01-24 02:46

    The DAGs are evaluated in every run of the scheduler.

    This article describes how the scheduler works and at what stage the DAG files are picked up for evaluation.

提交回复
热议问题