You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by iw...@apache.org on 2022/07/04 03:34:43 UTC

[bigtop] branch branch-3.1 updated: BIGTOP-3714. Fix error of DataNode httpserver due to conflicting dependency on Netty in branch-3.1. (#927)

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

iwasakims pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/branch-3.1 by this push:
     new 5c96208e BIGTOP-3714. Fix error of DataNode httpserver due to conflicting dependency on Netty in branch-3.1. (#927)
5c96208e is described below

commit 5c96208effa96cb168f8ae51f75f77687f82b2c9
Author: Masatake Iwasaki <iw...@apache.org>
AuthorDate: Mon Jul 4 12:34:38 2022 +0900

    BIGTOP-3714. Fix error of DataNode httpserver due to conflicting dependency on Netty in branch-3.1. (#927)
---
 .../patch0-exclude-netty-from-zookeeper.diff       | 34 ++++++++++++++++++++++
 bigtop.bom                                         |  2 +-
 2 files changed, 35 insertions(+), 1 deletion(-)

diff --git a/bigtop-packages/src/common/hadoop/patch0-exclude-netty-from-zookeeper.diff b/bigtop-packages/src/common/hadoop/patch0-exclude-netty-from-zookeeper.diff
new file mode 100644
index 00000000..2388e6a7
--- /dev/null
+++ b/bigtop-packages/src/common/hadoop/patch0-exclude-netty-from-zookeeper.diff
@@ -0,0 +1,34 @@
+diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml
+index ce2a268..d1da396 100644
+--- a/hadoop-project/pom.xml
++++ b/hadoop-project/pom.xml
+@@ -1192,6 +1192,14 @@
+             <groupId>jline</groupId>
+             <artifactId>jline</artifactId>
+           </exclusion>
++          <exclusion>
++            <groupId>io.netty</groupId>
++            <artifactId>netty-handler</artifactId>
++          </exclusion>
++          <exclusion>
++            <groupId>io.netty</groupId>
++            <artifactId>netty-transport-native-epoll</artifactId>
++          </exclusion>
+         </exclusions>
+       </dependency>
+       <dependency>
+@@ -1208,6 +1216,14 @@
+             <groupId>jline</groupId>
+             <artifactId>jline</artifactId>
+           </exclusion>
++          <exclusion>
++            <groupId>io.netty</groupId>
++            <artifactId>netty-handler</artifactId>
++          </exclusion>
++          <exclusion>
++            <groupId>io.netty</groupId>
++            <artifactId>netty-transport-native-epoll</artifactId>
++          </exclusion>
+         </exclusions>
+       </dependency>
+       <dependency>
diff --git a/bigtop.bom b/bigtop.bom
index 22d5adf6..b7eb9459 100644
--- a/bigtop.bom
+++ b/bigtop.bom
@@ -145,7 +145,7 @@ bigtop {
     'hadoop' {
       name    = 'hadoop'
       relNotes = 'Apache Hadoop'
-      version { base = '3.2.3'; pkg = base; release = 1 }
+      version { base = '3.2.3'; pkg = base; release = 2 }
       tarball { destination = "${name}-${version.base}.tar.gz"
                 source      = "${name}-${version.base}-src.tar.gz" }
       url     { download_path = "/$name/common/$name-${version.base}"