2020-12-21 05:03:36 -05:00
|
|
|
#!/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.
|
|
|
|
# */
|
|
|
|
#
|
|
|
|
|
2023-03-08 21:46:25 -05:00
|
|
|
usage="Usage: chaos-daemon.sh (start|stop) (chaosagent|chaosmonkeyrunner)"
|
2020-12-21 05:03:36 -05:00
|
|
|
|
|
|
|
# if no args specified, show usage
|
|
|
|
if [ $# -le 1 ]; then
|
|
|
|
echo "$usage"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# get arguments
|
|
|
|
startStop=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
command=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
check_before_start(){
|
|
|
|
#ckeck if the process is not running
|
|
|
|
mkdir -p "$HBASE_PID_DIR"
|
|
|
|
if [ -f "$CHAOS_PID" ]; then
|
|
|
|
if kill -0 "$(cat "$CHAOS_PID")" > /dev/null 2>&1; then
|
|
|
|
echo "$command" running as process "$(cat "$CHAOS_PID")". Stop it first.
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
bin=`dirname "${BASH_SOURCE-$0}"`
|
|
|
|
bin=$(cd "$bin">/dev/null || exit; pwd)
|
|
|
|
|
|
|
|
. "$bin"/hbase-config.sh
|
|
|
|
. "$bin"/hbase-common.sh
|
|
|
|
|
|
|
|
# get log directory
|
|
|
|
if [ "$HBASE_LOG_DIR" = "" ]; then
|
|
|
|
export HBASE_LOG_DIR="$HBASE_HOME/logs"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$HBASE_PID_DIR" = "" ]; then
|
|
|
|
HBASE_PID_DIR=/tmp
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$HBASE_IDENT_STRING" = "" ]; then
|
|
|
|
export HBASE_IDENT_STRING="$USER"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$JAVA_HOME" != "" ]; then
|
|
|
|
#echo "run java in $JAVA_HOME"
|
|
|
|
JAVA_HOME=$JAVA_HOME
|
|
|
|
fi
|
|
|
|
if [ "$JAVA_HOME" = "" ]; then
|
|
|
|
echo "Error: JAVA_HOME is not set."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
export HBASE_LOG_PREFIX=hbase-$HBASE_IDENT_STRING-$command-$HOSTNAME
|
2023-03-08 21:46:25 -05:00
|
|
|
export HBASE_LOGFILE=$HBASE_LOG_PREFIX.log
|
2020-12-21 05:03:36 -05:00
|
|
|
|
|
|
|
if [ -z "${HBASE_ROOT_LOGGER}" ]; then
|
|
|
|
export HBASE_ROOT_LOGGER=${HBASE_ROOT_LOGGER:-"INFO,RFA"}
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${HBASE_SECURITY_LOGGER}" ]; then
|
|
|
|
export HBASE_SECURITY_LOGGER=${HBASE_SECURITY_LOGGER:-"INFO,RFAS"}
|
|
|
|
fi
|
|
|
|
|
2023-03-08 21:46:25 -05:00
|
|
|
CHAOS_LOGLOG=${CHAOS_LOGLOG:-"${HBASE_LOG_DIR}/${HBASE_LOGFILE}"}
|
2020-12-21 05:03:36 -05:00
|
|
|
CHAOS_PID=$HBASE_PID_DIR/hbase-$HBASE_IDENT_STRING-$command.pid
|
|
|
|
|
|
|
|
if [ -z "$CHAOS_JAVA_OPTS" ]; then
|
|
|
|
CHAOS_JAVA_OPTS="-Xms1024m -Xmx4096m"
|
|
|
|
fi
|
|
|
|
|
|
|
|
case $startStop in
|
|
|
|
|
|
|
|
(start)
|
|
|
|
check_before_start
|
|
|
|
echo running $command
|
2023-03-08 21:46:25 -05:00
|
|
|
command_args=""
|
|
|
|
if [ "$command" = "chaosagent" ]; then
|
|
|
|
command_args=" -${command} start"
|
|
|
|
elif [ "$command" = "chaosmonkeyrunner" ]; then
|
|
|
|
command_args="-c $HBASE_CONF_DIR $@"
|
|
|
|
fi
|
|
|
|
HBASE_OPTS="$HBASE_OPTS $CHAOS_JAVA_OPTS" . $bin/hbase --config "${HBASE_CONF_DIR}" $command $command_args >> ${CHAOS_LOGLOG} 2>&1 &
|
2020-12-21 05:03:36 -05:00
|
|
|
PID=$(echo $!)
|
2023-03-08 21:46:25 -05:00
|
|
|
disown -h -r
|
2020-12-21 05:03:36 -05:00
|
|
|
echo ${PID} >${CHAOS_PID}
|
|
|
|
|
2023-03-08 21:46:25 -05:00
|
|
|
echo "Chaos ${command} process Started with ${PID} !"
|
2020-12-21 05:03:36 -05:00
|
|
|
now=$(date)
|
2023-03-08 21:46:25 -05:00
|
|
|
echo "${now} Chaos ${command} process Started with ${PID} !" >>${CHAOS_LOGLOG}
|
2020-12-21 05:03:36 -05:00
|
|
|
;;
|
|
|
|
|
|
|
|
(stop)
|
|
|
|
echo stopping $command
|
|
|
|
if [ -f $CHAOS_PID ]; then
|
|
|
|
pidToKill=`cat $CHAOS_PID`
|
|
|
|
# kill -0 == see if the PID exists
|
|
|
|
if kill -0 $pidToKill > /dev/null 2>&1; then
|
|
|
|
echo -n stopping $command
|
|
|
|
echo "`date` Terminating $command" >> $CHAOS_LOGLOG
|
|
|
|
kill $pidToKill > /dev/null 2>&1
|
|
|
|
waitForProcessEnd $pidToKill $command
|
|
|
|
else
|
|
|
|
retval=$?
|
|
|
|
echo no $command to stop because kill -0 of pid $pidToKill failed with status $retval
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo no $command to stop because no pid file $CHAOS_PID
|
|
|
|
fi
|
|
|
|
rm -f $CHAOS_PID
|
|
|
|
;;
|
|
|
|
|
|
|
|
(*)
|
|
|
|
echo $usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|