This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-1.8
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-1.8 by this push:
new a59f3279a ORC-1169: Use Hadoop to 3.3.2 on Java 17+ (#1113)
a59f3279a is described below
commit a59f3279a3474890b44c123953d624cc44d47485
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Mon May 9 23:37:38 2022 -0700
ORC-1169: Use Hadoop to 3.3.2 on Java 17+ (#1113)
### What changes were proposed in this pull request?
This PR aims to upgrade Hadoop to 3.3.2 on `java17` profile in Apache ORC
1.8.0.
### Why are the changes needed?
[Apache Hadoop 3.3.2 is the latest
version](https://hadoop.apache.org/docs/r3.3.2/index.html) with the following.
- This is the first release to support ARM architectures.
- Upgrade protobuf from 2.5.0 to something newer
- Java 11 runtime support is completed.
- Shaded Guava from thirdparty
### How was this patch tested?
Pass the Java 17+ CIs.
(cherry picked from commit 9e567040c90bb0d4a094159f9b33f2ae3dbe8a94)
Signed-off-by: Dongjoon Hyun <[email protected]>
---
java/pom.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/java/pom.xml b/java/pom.xml
index b8b24bc0a..8e207d34f 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -470,9 +470,9 @@
<jdk>[17,)</jdk>
</activation>
<properties>
- <min.hadoop.version>3.3.1</min.hadoop.version>
- <hadoop.version>3.3.1</hadoop.version>
- <tools.hadoop.version>3.3.1</tools.hadoop.version>
+ <min.hadoop.version>3.3.2</min.hadoop.version>
+ <hadoop.version>3.3.2</hadoop.version>
+ <tools.hadoop.version>3.3.2</tools.hadoop.version>
</properties>
</profile>
</profiles>