Skip to content

Commit

Permalink
HBASE-28277 Move minimum hadoop 3 support to 3.3.x for 2.6+ (#5598)
Browse files Browse the repository at this point in the history
Signed-off-by: Bryan Beaudreault <bbeaudreault@apache.org>
(cherry picked from commit 4aeabdc)
  • Loading branch information
Apache9 committed Jan 6, 2024
1 parent 6a26576 commit f696c82
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions dev-support/hbase-personality.sh
Original file line number Diff line number Diff line change
Expand Up @@ -602,13 +602,20 @@ function hadoopcheck_rebuild
else
hbase_hadoop3_versions="3.1.1 3.1.2 3.1.3 3.1.4 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6"
fi
else
yetus_info "Setting Hadoop 3 versions to test based on branch-2.5+/master/feature branch rules"
elif [[ "${PATCH_BRANCH}" = branch-2.5 ]]; then
yetus_info "Setting Hadoop 3 versions to test based on branch-2.5 rules"
if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
hbase_hadoop3_versions="3.2.4 3.3.6"
else
hbase_hadoop3_versions="3.2.3 3.2.4 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6"
fi
else
yetus_info "Setting Hadoop 3 versions to test based on branch-2.6+/master/feature branch rules"
if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
hbase_hadoop3_versions="3.3.6"
else
hbase_hadoop3_versions="3.3.5 3.3.6"
fi
fi

export MAVEN_OPTS="${MAVEN_OPTS}"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@
<maven.min.version>3.5.0</maven.min.version>
<java.min.version>${compileSource}</java.min.version>
<!-- Dependencies -->
<hadoop-three.version>3.2.4</hadoop-three.version>
<hadoop-three.version>3.3.5</hadoop-three.version>
<!-- These must be defined here for downstream build tools that don't look at profiles.
-->
<hadoop.version>${hadoop-three.version}</hadoop.version>
Expand Down

0 comments on commit f696c82

Please sign in to comment.