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/05/06 10:42:54 UTC

[bigtop] branch branch-3.1 updated: BIGTOP-3677 (addendum). Building HBase for CentOS 7 on arm64 and ppc64le fails due to missing libraries. (#898)

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 8b0aceba BIGTOP-3677 (addendum). Building HBase for CentOS 7 on arm64 and ppc64le fails due to missing libraries. (#898)
8b0aceba is described below

commit 8b0aceba239d0d579140d66c8bad190a3326276c
Author: Kengo Seki <se...@apache.org>
AuthorDate: Fri May 6 19:41:51 2022 +0900

    BIGTOP-3677 (addendum). Building HBase for CentOS 7 on arm64 and ppc64le fails due to missing libraries. (#898)
    
    (cherry picked from commit 1b299b4c0e1d605cd37ab3b06e7296d982567115)
---
 bigtop-packages/src/common/zeppelin/do-component-build | 2 +-
 bigtop_toolchain/manifests/grpc.pp                     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/bigtop-packages/src/common/zeppelin/do-component-build b/bigtop-packages/src/common/zeppelin/do-component-build
index 0559af58..fdac7461 100644
--- a/bigtop-packages/src/common/zeppelin/do-component-build
+++ b/bigtop-packages/src/common/zeppelin/do-component-build
@@ -47,7 +47,7 @@ BUILD_OPTS="-Dhadoop3.2.version=${HADOOP_VERSION} \
 
 if [ $HOSTTYPE = "powerpc64le" ] ; then
   mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=3.5.0 \
-      -Dclassifier=linux-ppcle_64 -Dpackaging=exe -Dfile=/usr/local/protobuf-3.5.1.1/bin/protoc
+      -Dclassifier=linux-ppcle_64 -Dpackaging=exe -Dfile=/usr/local/protobuf-3.17.3/bin/protoc
   
   mvn install:install-file -DgroupId=io.grpc -DartifactId=protoc-gen-grpc-java -Dversion=1.28.0 -Dclassifier=linux-ppcle_64 -Dpackaging=exe -Dfile=/usr/src/grpc-java-1.28.0/compiler/build/exe/java_plugin/protoc-gen-grpc-java
 sed -i "s|<node.version>v12.3.1</node.version>|<node.version>v12.22.1</node.version>|" pom.xml
diff --git a/bigtop_toolchain/manifests/grpc.pp b/bigtop_toolchain/manifests/grpc.pp
index bb7f2f8f..4c9e4108 100644
--- a/bigtop_toolchain/manifests/grpc.pp
+++ b/bigtop_toolchain/manifests/grpc.pp
@@ -19,8 +19,8 @@ class bigtop_toolchain::grpc {
   require bigtop_toolchain::protobuf
 
   $grpc_version = '1.28.0'
-  $proto_version = '3.5.1.1'
-  $proto_home = "/usr/local/protobuf-3.5.1.1"
+  $proto_version = '3.17.3'
+  $proto_home = "/usr/local/protobuf-3.17.3"
 
   if ($architecture == 'ppc64le') {