Skip to content

Commit 782e5fb

Browse files
committed
[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 #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 e6bfe65 [Cheng Pan] Remove staging repo 9c7f1d1 [Cheng Pan] Exclude snappy-java 7e0297b [Cheng Pan] Update dependencyList bded82b [Cheng Pan] Bump Hadoop 3.3.4-RC1 c46f8ec [Cheng Pan] Bump Hadoop 3.3.4-RC0 Authored-by: Cheng Pan <chengpan@apache.org> Signed-off-by: Cheng Pan <chengpan@apache.org>
1 parent b8162f1 commit 782e5fb

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

dev/dependencyList

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ grpc-protobuf/1.48.0//grpc-protobuf-1.48.0.jar
4444
grpc-stub/1.48.0//grpc-stub-1.48.0.jar
4545
gson/2.8.9//gson-2.8.9.jar
4646
guava/30.1-jre//guava-30.1-jre.jar
47-
hadoop-client-api/3.3.1//hadoop-client-api-3.3.1.jar
48-
hadoop-client-runtime/3.3.1//hadoop-client-runtime-3.3.1.jar
47+
hadoop-client-api/3.3.4//hadoop-client-api-3.3.4.jar
48+
hadoop-client-runtime/3.3.4//hadoop-client-runtime-3.3.4.jar
4949
hive-common/3.1.3//hive-common-3.1.3.jar
5050
hive-metastore/3.1.3//hive-metastore-3.1.3.jar
5151
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
5757
hk2-api/2.6.1//hk2-api-2.6.1.jar
5858
hk2-locator/2.6.1//hk2-locator-2.6.1.jar
5959
hk2-utils/2.6.1//hk2-utils-2.6.1.jar
60-
htrace-core4/4.1.0-incubating//htrace-core4-4.1.0-incubating.jar
6160
httpclient/4.5.13//httpclient-4.5.13.jar
6261
httpcore/4.4.15//httpcore-4.4.15.jar
6362
j2objc-annotations/1.3//j2objc-annotations-1.3.jar

pom.xml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
<gson.version>2.8.9</gson.version>
126126
<guava.version>30.1-jre</guava.version>
127127
<guava.failureaccess.version>1.0.1</guava.failureaccess.version>
128-
<hadoop.version>3.3.1</hadoop.version>
128+
<hadoop.version>3.3.4</hadoop.version>
129129
<hikaricp.version>4.0.3</hikaricp.version>
130130
<derby.version>10.14.2.0</derby.version>
131131
<fliptables.verion>1.0.2</fliptables.verion>
@@ -313,6 +313,12 @@
313313
<groupId>org.apache.hadoop</groupId>
314314
<artifactId>hadoop-client-api</artifactId>
315315
<version>${hadoop.version}</version>
316+
<exclusions>
317+
<exclusion>
318+
<groupId>org.xerial.snappy</groupId>
319+
<artifactId>snappy-java</artifactId>
320+
</exclusion>
321+
</exclusions>
316322
</dependency>
317323

318324
<dependency>
@@ -324,6 +330,10 @@
324330
<groupId>com.google.code.findbugs</groupId>
325331
<artifactId>jsr305</artifactId>
326332
</exclusion>
333+
<exclusion>
334+
<groupId>org.xerial.snappy</groupId>
335+
<artifactId>snappy-java</artifactId>
336+
</exclusion>
327337
</exclusions>
328338
</dependency>
329339

@@ -1094,6 +1104,12 @@
10941104
<groupId>org.apache.hadoop</groupId>
10951105
<artifactId>hadoop-client-minicluster</artifactId>
10961106
<version>${hadoop.version}</version>
1107+
<exclusions>
1108+
<exclusion>
1109+
<groupId>org.xerial.snappy</groupId>
1110+
<artifactId>snappy-java</artifactId>
1111+
</exclusion>
1112+
</exclusions>
10971113
</dependency>
10981114

10991115
<dependency>

0 commit comments

Comments
 (0)