You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2020/10/13 02:19:02 UTC

[hbase] branch master updated: "HBASE-25144 Add Hadoop-3.3.0 to personality hadoopcheck" try again (#2536)

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

zghao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new bc20203  "HBASE-25144 Add Hadoop-3.3.0 to personality hadoopcheck" try again (#2536)
bc20203 is described below

commit bc20203965c06e12f7061ec6c40221ccee220ae3
Author: Nick Dimiduk <nd...@apache.org>
AuthorDate: Mon Oct 12 19:18:47 2020 -0700

    "HBASE-25144 Add Hadoop-3.3.0 to personality hadoopcheck" try again (#2536)
    
    Due to HBASE-23834, HBASE-19256, HADOOP-16152, HBase 2.2.x and 2.3.x
    cannot run on Hadoop 3.3.0, or any Hadoop version that has upgraded to
    Jetty 9.4.
    
    Signed-off-by: Sean Busbey <bu...@apache.org>
    Signed-off-by: stack <st...@apache.org>
    Signed-off-by: Guanghao Zhang <zg...@apache.org>
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 dev-support/hbase-personality.sh | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 95bbd44..9b39ead 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -609,8 +609,15 @@ function hadoopcheck_rebuild
     else
       hbase_hadoop3_versions="3.0.3 3.1.1 3.1.2"
     fi
+  elif [[ "${PATCH_BRANCH}" = branch-2.2 ]] || [[ "${PATCH_BRANCH}" = branch-2.3 ]]; then
+    yetus_info "Setting Hadoop 3 versions to test based on branch-2.2/branch-2.3 rules"
+    if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
+      hbase_hadoop3_versions="3.1.2 3.2.1"
+    else
+      hbase_hadoop3_versions="3.1.1 3.1.2 3.2.0 3.2.1"
+    fi
   else
-    yetus_info "Setting Hadoop 3 versions to test based on branch-2.2+/master/feature branch rules"
+    yetus_info "Setting Hadoop 3 versions to test based on branch-2.4+/master/feature branch rules"
     if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
       hbase_hadoop3_versions="3.1.2 3.2.1 3.3.0"
     else