행위

Airflow DAG

라이언의 꿀팁백과

103.159.161.129 (토론)님의 2023년 6월 26일 (월) 10:10 판 (새 문서: Apache Airflow™ is an open-source platform for developing, scheduling, and monitoring batch-oriented workflows. Airflow’s extensible Python framework enables you to build workflows connecting with virtually any technology. A web interface helps manage the state of your workflows. Airflow is deployable in many ways, varying from a single process on your laptop to a distributed setup to support even the biggest workflows. https://airflow.apache.org/docs/apache-airflow/stable/...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

Apache Airflow™ is an open-source platform for developing, scheduling, and monitoring batch-oriented workflows. Airflow’s extensible Python framework enables you to build workflows connecting with virtually any technology. A web interface helps manage the state of your workflows. Airflow is deployable in many ways, varying from a single process on your laptop to a distributed setup to support even the biggest workflows.

https://airflow.apache.org/docs/apache-airflow/stable/index.html

A DAG (Directed Acyclic Graph) is the core concept of Airflow, collecting Tasks together, organized with dependencies and relationships to say how they should run.

https://airflow.apache.org/docs/apache-airflow/stable/core-concepts/dags.html

https://leeyh0216.github.io/posts/airflow_concept_dag_operator/