blob: 7fd66a361d0079f323be5734321ed1e5f8110c1c [file] [log] [blame]
#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Rebuilds HBase with -Dhadoop.profile=3.0 locally, to work around PHOENIX-5993
# Intended mainly for CI jobs, but can simplify manual rebuilds as well.
DEV_SUPPORT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
ARTIFACTS_DIR="$DEV_SUPPORT/artifacts"
WORK_DIR="$DEV_SUPPORT/work"
if [[ ! -z "$MAVEN_SETTINGS_FILE" ]]; then
SETTINGS=( "--settings" "$MAVEN_SETTINGS_FILE" )
fi
if [[ ! -z "$MAVEN_LOCAL_REPO" ]]; then
LOCALREPO="-Dmaven.repo.local=${MAVEN_LOCAL_REPO}"
fi
if [[ "$1" == "detect" ]]; then
set -e
cd "$DEV_SUPPORT/.."
HBASE_VERSION=$(mvn ${SETTINGS[@]} help:evaluate -Dexpression=hbase.version -q -DforceStdout $LOCALREPO)
echo "HBASE_VERSION=$HBASE_VERSION"
cd "$DEV_SUPPORT"
set +e
else
HBASE_VERSION="$1"
fi
# The name of the Apache Hbase source file
HBASE_SOURCE_NAME="hbase-$HBASE_VERSION-src.tar.gz"
# The relative path on the ASF mirrors for the Hbase source file
HBASE_SOURCE_MIRROR_NAME="hbase/$HBASE_VERSION/$HBASE_SOURCE_NAME"
# Downloads the specified HBase version source, extracts it,
# then rebuilds and installs the maven artifacts locally with -Dhadoop.profile=3.0
if [ $# -ne 1 ]
then
echo "Supply the Hbase version as paramater i.e.: rebuild_hbase.sh 2.2.6 "
fi
mkdir "$ARTIFACTS_DIR"
mkdir "$WORK_DIR"
$DEV_SUPPORT/cache-apache-project-artifact.sh --keys https://downloads.apache.org/hbase/KEYS \
--working-dir "$WORK_DIR" "$ARTIFACTS_DIR/$HBASE_SOURCE_NAME" "$HBASE_SOURCE_MIRROR_NAME"
if [[ ! -z "$MAVEN_SETTINGS_FILE" ]]; then
SETTINGS=( "--settings" "$MAVEN_SETTINGS_FILE" )
fi
STARTDIR=$PWD
cd $ARTIFACTS_DIR
tar xfz hbase-$HBASE_VERSION-src.tar.gz
cd hbase-$HBASE_VERSION
echo mvn ${SETTINGS[@]} clean install -Dhadoop.profile=3.0 -DskipTests -B $LOCALREPO
mvn ${SETTINGS[@]} clean install -Dhadoop.profile=3.0 -DskipTests -B $LOCALREPO
cd ${STARTDIR}