Skip to content

Commit

Permalink
OOZIE-3728 Upgrade Hadoop to 2.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dionusos committed Jan 15, 2025
1 parent 318fac5 commit 33c90dd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/src/site/markdown/ENG_Building.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ specified in the `test.properties` file (which is loaded by the `XTestCase` clas

**hadoop.version** `(*)`: indicates the Hadoop version you wish to build Oozie against specifically. It will
substitute this value in the Oozie POM properties and pull the corresponding Hadoop artifacts from Maven.
The default version is 2.6.0 and that is the minimum supported Hadoop version.
The default version is 2.8.5 and that is the minimum supported Hadoop version.

**generateSite** (*): generates Oozie documentation, default is undefined (no documentation is generated)

Expand Down
2 changes: 1 addition & 1 deletion docs/src/site/markdown/ENG_Custom_Authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
resources file (ex. web.xml) needs to include a filter class derived from `AuthenticationFilter`.

For more information have a look at the appropriate
[Hadoop documentation](https://hadoop.apache.org/docs/r2.7.2/hadoop-auth/index.html).
[Hadoop documentation](https://hadoop.apache.org/docs/r2.8.5/hadoop-auth/index.html).

## Provide Custom Authentication to Oozie Client

Expand Down
10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
</oozie.test.default.config.file>
<oozie.test.config.file>${oozie.test.default.config.file}</oozie.test.config.file>

<hadoop.version>2.6.0</hadoop.version>
<hadoop.version>2.8.5</hadoop.version>
<hadoop.majorversion>2</hadoop.majorversion>
<hadooplib.version>hadoop-${hadoop.majorversion}-${project.version}</hadooplib.version>
<hbase.version>1.2.3</hbase.version>
Expand Down Expand Up @@ -561,6 +561,10 @@
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</exclusion>
<exclusion>
<groupId>org.pentaho</groupId>
<artifactId>pentaho-aggdesigner-algorithm</artifactId>
</exclusion>
</exclusions>
</dependency>

Expand Down Expand Up @@ -606,6 +610,10 @@
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
<exclusion>
<groupId>org.pentaho</groupId>
<artifactId>pentaho-aggdesigner-algorithm</artifactId>
</exclusion>
</exclusions>
</dependency>

Expand Down
1 change: 1 addition & 0 deletions release-log.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
-- Oozie 5.3.0 release (trunk - unreleased)

OOZIE-3728 Upgrade Hadoop to 2.8.5 (asasvari, dionusos via dionusos)
OOZIE-3717 When fork actions parallel submit, becasue ForkedActionStartXCommand and ActionStartXCommand has the same name, so ForkedActionStartXCommand would be lost, and cause deadlock (chenhd via dionusos)
OOZIE-3715 Fix fork out more than one transitions submit , one transition submit fail can't execute KillXCommand (chenhd via dionusos)
OOZIE-3716 Invocation of Main class completed Message is skipped when LauncherSecurityManager calls system exit (khr9603 via dionusos)
Expand Down

0 comments on commit 33c90dd

Please sign in to comment.