Jump to content

Apache Oozie: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Updating Project Logo to SVG version
Citation bot (talk | contribs)
Add: website. | Use this bot. Report bugs. | Suggested by Whoop whoop pull up | #UCB_webform 90/258
 
(13 intermediate revisions by 11 users not shown)
Line 1: Line 1:
{{Short description|Workflow scheduler for Apache Hadoop}}
{{multiple issues|
{{notability|Products|date=January 2013}}
{{primary sources|date=January 2013}}
{{primary sources|date=January 2013}}
}}
{{Infobox software
{{Infobox software
| name = Apache Oozie
| name = Apache Oozie
| logo = [[File:Apache_Oozie_Logo.svg|250px|Apache Oozie Logo]]
| logo = Apache Oozie logo.svg
| logo alt =
| logo caption =
| screenshot = <!-- Image name is enough -->
| screenshot = <!-- Image name is enough -->
| caption =
| caption =
Line 15: Line 13:
| released = <!-- {{Start date and age|YYYY|MM|DD|df=yes/no}} -->
| released = <!-- {{Start date and age|YYYY|MM|DD|df=yes/no}} -->
| discontinued =
| discontinued =
| latest release version = 5.1.0
| latest release version = 5.2.1
| latest release date = {{Start date and age|2018|12|19|df=yes}}<ref>{{cite web|url=https://www-us.apache.org/dist/oozie/|accessdate=7 July 2017|title=Index of /dist/oozie}}</ref>
| latest release date = {{Start date and age|2021|02|26|df=yes}}<ref>{{cite web|url=https://lists.apache.org/thread/jy4ny7lqfj31xl4djlmkyldsohyh7k65|access-date=27 September 2022|title=[ANNOUNCE] Apache Oozie 5.2.1 released}}</ref>
| latest preview version =
| latest preview version =
| latest preview date = <!-- {{Start date and age|YYYY|MM|DD|df=yes/no}} -->
| latest preview date = <!-- {{Start date and age|YYYY|MM|DD|df=yes/no}} -->
| repo = {{URL|https://gitbox.apache.org/repos/asf/oozie.git|Oozie Repository}}
| programming language = [[Java (programming language)|Java]]<ref>{{cite web|url=https://git-wip-us.apache.org/repos/asf?p=oozie.git;a=tree;f=core/src/main/java/org/apache/oozie;h=eae93200faacc4f9c26494b939b8aa83377438d0;hb=master|title=oozie.git/tree - core/src/main/java/org/apache/oozie|accessdate=7 July 2017}}{{Dead link|date=May 2019 |bot=InternetArchiveBot |fix-attempted=yes }}</ref>, [[JavaScript]]
| programming language = [[Java (programming language)|Java]],<ref>{{cite web|url=https://github.com/apache/oozie/tree/master/core/src/main/java/org/apache/oozie|title=apache/oozie - core/src/main/java/org/apache/oozie|website=[[GitHub]] |access-date=28 May 2020}}</ref> [[JavaScript]]
| operating system = [[Cross-platform]]
| operating system = [[Cross-platform]]
| platform = [[Java virtual machine]]
| platform = [[Java virtual machine]]
Line 29: Line 28:
| license = [[Apache License 2.0]]
| license = [[Apache License 2.0]]
| alexa =
| alexa =
| website = {{url|//oozie.apache.org/}}
| website = {{URL|//oozie.apache.org/}}
| standard =
| standard =
| AsOf =
| AsOf =
Line 49: Line 48:
{{Apache Software Foundation}}
{{Apache Software Foundation}}


[[Category:Apache Software Foundation projects|Oozie]]
[[Category:Hadoop]]
[[Category:Hadoop]]
[[Category:Workflow applications]]
[[Category:Workflow applications]]

Latest revision as of 20:30, 27 March 2023

Apache Oozie
Developer(s)Apache Software Foundation
Stable release
5.2.1 / 26 February 2021; 3 years ago (2021-02-26)[1]
RepositoryOozie Repository
Written inJava,[2] JavaScript
Operating systemCross-platform
PlatformJava virtual machine
LicenseApache License 2.0
Websiteoozie.apache.org

Apache Oozie is a server-based workflow scheduling system to manage Hadoop jobs.

Workflows in Oozie are defined as a collection of control flow and action nodes in a directed acyclic graph. Control flow nodes define the beginning and the end of a workflow (start, end, and failure nodes) as well as 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 including Hadoop MapReduce, Hadoop distributed file system operations, Pig, SSH, and email. Oozie can also be extended to support additional types of actions.

Oozie workflows can be parameterised using variables such as ${inputDir} within the workflow definition. When submitting a workflow job, values for the parameters must be provided. If properly parameterized (using different output directories), several identical workflow jobs can run concurrently.

Oozie is implemented as a Java web application that runs in a Java servlet container and is distributed under the Apache License 2.0.

References

[edit]
  1. ^ "[ANNOUNCE] Apache Oozie 5.2.1 released". Retrieved 27 September 2022.
  2. ^ "apache/oozie - core/src/main/java/org/apache/oozie". GitHub. Retrieved 28 May 2020.
[edit]