1) DAG ( Directed Acyclic Graph )
- 수학 용어, 컴퓨터 공학 용어
- "방향성 비사이클 그래프" <컴퓨터인터넷IT용어대사전>
- 사이클이 존재하지 않는 방향 그래프.
In mathematics and computer science, a directed acyclic graph (DAG /ˈdæɡ/), is a directed graph with no directed cycles.
[참고: http://en.wikipedia.org/wiki/Directed_acyclic_graph]
2) control dependency
Oozie 의 Workflow 정의...
Workflow:
A collection of actions arranged in a control dependency DAG (Direct Acyclic Graph).
"control dependency" from one action to another means that the second action can't run until the first action has completed.
==> "한 Action 에서 다른 Action 으로의 의존성 (dependency) 을 제어 (control) 한다는 것은,
첫 번째 Action 이 완료되어야만, 두 번째 Action 을 실행 할 수 있다는 의미다."