Author: kamrul
Date: Thu May 10 19:57:02 2012
New Revision: 1336860
URL: http://svn.apache.org/viewvc?rev=1336860&view=rev
Log:
OOZIE-832 Rename readme.txt file to README.txt and update contents
Added:
incubator/oozie/trunk/README.txt
Modified:
incubator/oozie/trunk/readme.txt
Added: incubator/oozie/trunk/README.txt
URL:
http://svn.apache.org/viewvc/incubator/oozie/trunk/README.txt?rev=1336860&view=auto
==============================================================================
--- incubator/oozie/trunk/README.txt (added)
+++ incubator/oozie/trunk/README.txt Thu May 10 19:57:02 2012
@@ -0,0 +1,62 @@
+Apache Oozie
+=============
+
+What is Oozie
+--------------
+
+Oozie is an extensible, scalable and reliable system to define, manage,
schedule, and execute complex Hadoop workloads via web services. More
specifically, this includes:
+
+ * XML-based declarative framework to specify a job or a complex workflow of
dependent jobs.
+ * Support different types of job such as Hadoop Map-Reduce, Pipe, Streaming,
Pig, Hive and custom java applications.
+ * Workflow scheduling based on frequency and/or data availability.
+ * Monitoring capability, automatic retry and failure handing of jobs.
+ * Extensible and pluggable architecture to allow arbitrary grid programming
paradigms.
+ * Authentication, authorization, and capacity-aware load throttling to allow
multi-tenant software as a service.
+
+Oozie Overview
+----------
+
+Oozie is a server based Workflow Engine specialized in running workflow jobs
with actions that run Hadoop Map/Reduce and Pig jobs.
+
+Oozie is a Java Web-Application that runs in a Java servlet-container.
+
+For the purposes of Oozie, a workflow is a collection of actions (i.e. Hadoop
Map/Reduce jobs, Pig jobs) 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.
+
+Oozie workflows definitions are written in hPDL (a XML Process Definition
Language similar to JBOSS JBPM jPDL).
+
+Oozie workflow actions start jobs in remote systems (i.e. Hadoop, Pig). Upon
action completion, the remote systems callback Oozie to notify the action
completion, at this point Oozie proceeds to the next action in the workflow.
+
+Oozie workflows contain control flow nodes and action nodes.
+
+Control flow nodes define the beginning and the end of a workflow ( start ,
end and fail nodes) and provide a mechanism to control the workflow execution
path ( decision , fork and join nodes).
+
+Action nodes are the mechanism by which a workflow triggers the execution of a
computation/processing task. Oozie provides support for different types of
actions: Hadoop map-reduce, Hadoop file system, Pig, SSH, HTTP, eMail and Oozie
sub-workflow. Oozie can be extended to support additional type of actions.
+
+Oozie workflows can be parameterized (using variables like ${inputDir} within
the workflow definition). When submitting a workflow job values for the
parameters must be provided. If properly parameterized (i.e. using different
output directories) several identical workflow jobs can concurrently.
+
+Documentations :
+-----------------
+Oozie web service is bundle with the built-in details documentation.
+
+More inforamtion could be found at:
+http://incubator.apache.org/oozie/
+
+Oozie Quick Start:
+ http://incubator.apache.org/oozie/QuickStart.html
+
+Supported Hadoop Versions:
+----------------------------
+
+This version of Oozie was primarily tested against Hadoop 0.20.205.x. This
will not work on earlier versions of Hadoop such as 0.20.x. and 0.21.
+
+--------------------------------------
+
+If you have any questions/issues, please send an email to:
+
[email protected]
+
+Subscribe using the link:
+
+http://incubator.apache.org/oozie/MailingLists.html
+
+
Modified: incubator/oozie/trunk/readme.txt
URL:
http://svn.apache.org/viewvc/incubator/oozie/trunk/readme.txt?rev=1336860&r1=1336859&r2=1336860&view=diff
==============================================================================
--- incubator/oozie/trunk/readme.txt (original)
+++ incubator/oozie/trunk/readme.txt Thu May 10 19:57:02 2012
@@ -47,7 +47,7 @@ Oozie Quick Start:
Supported Hadoop Versions:
----------------------------
-This version of Oozie was primarily tested against Hadoop 0.20.205.x. Other
earlier version (0.20.x) should work as well. However, it was not tested
against 0.23+ yet.
+This version of Oozie was primarily tested against Hadoop 0.20.205.x. This
will not work on earlier versions of Hadoop such as 0.20.x. and 0.21.
--------------------------------------