Skip to content
gqlxj1987's Blog
Go back

data traffic control in apache airflow

Edit page

原文链接

It provides:

A central database that stores all stateful information

Airflow proposes several executor out of the box, from the simplest to the most full-featured:

不支持:

No dynamic execution — The graph built by Airflow is built ahead of the actual execution. Airflow has a dynamic DAG generation system, which can rely on external parameters (configuration, or even Airflow variables), to alter the workflow’s graph. We use this pattern a lot, but it’s not possible to alter the shape of the workflow at runtime (for instance, spawn a variable number of tasks depending on the output of an upstream task)


Edit page
Share this post on:

Previous Post
kafka exactly one
Next Post
clean architecture on golang