Airflow
Back
Install
Core Components
- Web server(flask)
- Scheduler
- Metastore
- Triggerer
- Executor: 并不实际执行, 而是定义如何和哪个系统进程执行. 工作实际上是在 proecess 执行.
- queue:定义task的顺序
- worker: 实际执行任我
Core concept
- DAG:
- Operator:
- action operator: execute sth
- transfer operator: transfer data from A to B
- sensor operator: wait for sth to happen
- Task/Task instance:
- an operator is a task
- an operator needs a task instance
- Workflow:
Architecture 架构