'oozie'에 해당되는 글 2건

  1. 2013.01.18 Oozie : control dependency DAG
  2. 2013.01.16 Oozie 관련 자료 조사
카테고리 없음2013. 1. 18. 16:08

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 을 실행 할 수 있다는 의미다."

Posted by 좋은나무
카테고리 없음2013. 1. 16. 20:40

1. oozie 공식 사이트


Oozie, Yahoo! Workflow Engine for Hadoop : Apache 프로젝트의 Oozie 페이지

Yahoo!'s workflow engine for Hadoop : Oozie 소스 레파지토리 (Source Repository)

Apache Oozie Client 3.3.0 API

Oozie Web Services API, V1


2. 유용한 사이트


Oozie : open-source workflow / coordination Service : Oozie 가 잘 정리된 한글!! 블로그 (Apache 프로젝트 문서 요약)

yahoo / oozie Oozie 소스 레파지토리의 wiki 페이지

Introduction to Oozie : 간단한 영문 Oozie 소개글


3. 참조 읽을 거리


Workflow Engines for Hadoop : Oozie 정리한 영문 블로그

Using Oozie to Process Daily Logs : Log 프로세싱 관련 Oozie 활용 영문 블로그

Hamake Comparison With Other Workflow Engines : Oozie 포함 Workflow Engine 비교 표

Improving Hive join performance using Oozie : Hive 와 Oozie 활용 영문 블로그


3. 번외 정보


1) github

github 홈

Github를 이용하는 전체 흐름 이해하기 #1


2) hadoop 일반

Open Source Big Data for the Impatient, Part 1

Analyzing Twitter Data with Apache Hadoop

<끝>

Posted by 좋은나무