Airflow Programming Model: Difference between revisions
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
* [[Airflow#Subjects|Airflow]] | * [[Airflow#Subjects|Airflow]] | ||
=Overview= | =Overview= | ||
=<tt>requirements.txt</tt>= | |||
<syntaxhighlight lang='text'> | |||
apache-airflow == 2.3.3 | |||
</syntaxhighlight> | |||
=Declaring a DAG= | =Declaring a DAG= | ||
==With <tt>DAG()</tt> Constructor== | ==With <tt>DAG()</tt> Constructor== |
Revision as of 00:48, 14 July 2022
Internal
Overview
requirements.txt
apache-airflow == 2.3.3
Declaring a DAG
With DAG() Constructor
Also see:
With @dag Decorator
Also see:
TO PARSE:
- https://airflow.apache.org/docs/apache-airflow/stable/concepts/dags.html#the-dag-decorator
- https://airflow.apache.org/docs/apache-airflow/2.0.0/concepts.html#dag-decorator.
Module Management
TO PROCESS: https://airflow.apache.org/docs/apache-airflow/2.3.2/modules_management.html?highlight=import