This is an automated email from the ASF dual-hosted git repository.
dionusos pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/oozie.git
The following commit(s) were added to refs/heads/master by this push:
new 33c90dd34 OOZIE-3728 Upgrade Hadoop to 2.8.5
33c90dd34 is described below
commit 33c90dd3483921af108dacdd073dcbe3b780348b
Author: Denes Bodo <[email protected]>
AuthorDate: Wed Jan 15 08:24:03 2025 +0100
OOZIE-3728 Upgrade Hadoop to 2.8.5
---
docs/src/site/markdown/ENG_Building.md | 2 +-
docs/src/site/markdown/ENG_Custom_Authentication.md | 2 +-
pom.xml | 10 +++++++++-
release-log.txt | 1 +
4 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/docs/src/site/markdown/ENG_Building.md
b/docs/src/site/markdown/ENG_Building.md
index 0b9aeb65f..c5456b2cf 100644
--- a/docs/src/site/markdown/ENG_Building.md
+++ b/docs/src/site/markdown/ENG_Building.md
@@ -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)
diff --git a/docs/src/site/markdown/ENG_Custom_Authentication.md
b/docs/src/site/markdown/ENG_Custom_Authentication.md
index c70355f84..9f250e8e0 100644
--- a/docs/src/site/markdown/ENG_Custom_Authentication.md
+++ b/docs/src/site/markdown/ENG_Custom_Authentication.md
@@ -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
diff --git a/pom.xml b/pom.xml
index 0b1625b95..52085a689 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>
@@ -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>
@@ -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>
diff --git a/release-log.txt b/release-log.txt
index 7841defda..43a599cb4 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -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)