You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2022/08/09 02:48:37 UTC

[incubator-kyuubi] branch master updated: [KYUUBI #3162] Bump Hadoop 3.3.4

This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new 782e5fb95 [KYUUBI #3162] Bump Hadoop 3.3.4
782e5fb95 is described below

commit 782e5fb956d9836db61098a5573ce6c3dc32a9d1
Author: Cheng Pan <ch...@apache.org>
AuthorDate: Tue Aug 9 10:48:22 2022 +0800

    [KYUUBI #3162] Bump Hadoop 3.3.4
    
    ### _Why are the changes needed?_
    
    Release notes: https://dist.apache.org/repos/dist/release/hadoop/common/hadoop-3.3.4/RELEASENOTES.md
    
    Specifically, [HADOOP-18332](https://issues.apache.org/jira/browse/HADOOP-18332) fixed https://github.com/apache/incubator-kyuubi/issues/2904
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [x] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #3162 from pan3793/hadoop-3.3.4.
    
    Closes #3162
    
    e6bfe650 [Cheng Pan] Remove staging repo
    9c7f1d16 [Cheng Pan] Exclude snappy-java
    7e0297b8 [Cheng Pan] Update dependencyList
    bded82ba [Cheng Pan] Bump Hadoop 3.3.4-RC1
    c46f8ec6 [Cheng Pan] Bump Hadoop 3.3.4-RC0
    
    Authored-by: Cheng Pan <ch...@apache.org>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 dev/dependencyList |  5 ++---
 pom.xml            | 18 +++++++++++++++++-
 2 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/dev/dependencyList b/dev/dependencyList
index 4faf54bcd..7a6bcf812 100644
--- a/dev/dependencyList
+++ b/dev/dependencyList
@@ -44,8 +44,8 @@ grpc-protobuf/1.48.0//grpc-protobuf-1.48.0.jar
 grpc-stub/1.48.0//grpc-stub-1.48.0.jar
 gson/2.8.9//gson-2.8.9.jar
 guava/30.1-jre//guava-30.1-jre.jar
-hadoop-client-api/3.3.1//hadoop-client-api-3.3.1.jar
-hadoop-client-runtime/3.3.1//hadoop-client-runtime-3.3.1.jar
+hadoop-client-api/3.3.4//hadoop-client-api-3.3.4.jar
+hadoop-client-runtime/3.3.4//hadoop-client-runtime-3.3.4.jar
 hive-common/3.1.3//hive-common-3.1.3.jar
 hive-metastore/3.1.3//hive-metastore-3.1.3.jar
 hive-serde/3.1.3//hive-serde-3.1.3.jar
@@ -57,7 +57,6 @@ hive-storage-api/2.7.0//hive-storage-api-2.7.0.jar
 hk2-api/2.6.1//hk2-api-2.6.1.jar
 hk2-locator/2.6.1//hk2-locator-2.6.1.jar
 hk2-utils/2.6.1//hk2-utils-2.6.1.jar
-htrace-core4/4.1.0-incubating//htrace-core4-4.1.0-incubating.jar
 httpclient/4.5.13//httpclient-4.5.13.jar
 httpcore/4.4.15//httpcore-4.4.15.jar
 j2objc-annotations/1.3//j2objc-annotations-1.3.jar
diff --git a/pom.xml b/pom.xml
index 48aba8b41..a90d36c49 100644
--- a/pom.xml
+++ b/pom.xml
@@ -125,7 +125,7 @@
         <gson.version>2.8.9</gson.version>
         <guava.version>30.1-jre</guava.version>
         <guava.failureaccess.version>1.0.1</guava.failureaccess.version>
-        <hadoop.version>3.3.1</hadoop.version>
+        <hadoop.version>3.3.4</hadoop.version>
         <hikaricp.version>4.0.3</hikaricp.version>
         <derby.version>10.14.2.0</derby.version>
         <fliptables.verion>1.0.2</fliptables.verion>
@@ -313,6 +313,12 @@
                 <groupId>org.apache.hadoop</groupId>
                 <artifactId>hadoop-client-api</artifactId>
                 <version>${hadoop.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>org.xerial.snappy</groupId>
+                        <artifactId>snappy-java</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
 
             <dependency>
@@ -324,6 +330,10 @@
                         <groupId>com.google.code.findbugs</groupId>
                         <artifactId>jsr305</artifactId>
                     </exclusion>
+                    <exclusion>
+                        <groupId>org.xerial.snappy</groupId>
+                        <artifactId>snappy-java</artifactId>
+                    </exclusion>
                 </exclusions>
             </dependency>
 
@@ -1094,6 +1104,12 @@
                 <groupId>org.apache.hadoop</groupId>
                 <artifactId>hadoop-client-minicluster</artifactId>
                 <version>${hadoop.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>org.xerial.snappy</groupId>
+                        <artifactId>snappy-java</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
 
             <dependency>