2007-08-22 22:19:18 -04:00
|
|
|
#!/usr/bin/env bash
|
2007-07-12 18:08:25 -04:00
|
|
|
#
|
|
|
|
#/**
|
|
|
|
# * 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.
|
|
|
|
# */
|
2007-06-14 18:08:56 -04:00
|
|
|
#
|
|
|
|
# Runs a Hadoop hbase command as a daemon.
|
|
|
|
#
|
|
|
|
# Environment Variables
|
|
|
|
#
|
2008-02-05 15:09:24 -05:00
|
|
|
# HBASE_CONF_DIR Alternate hbase conf dir. Default is ${HBASE_HOME}/conf.
|
|
|
|
# HBASE_LOG_DIR Where log files are stored. PWD by default.
|
|
|
|
# HBASE_PID_DIR The pid files are stored. /tmp by default.
|
|
|
|
# HBASE_IDENT_STRING A string representing this instance of hadoop. $USER by default
|
|
|
|
# HBASE_NICENESS The scheduling priority for daemons. Defaults to 0.
|
2013-02-22 06:33:11 -05:00
|
|
|
# HBASE_STOP_TIMEOUT Time, in seconds, after which we kill -9 the server if it has not stopped.
|
|
|
|
# Default 1200 seconds.
|
2007-06-14 18:08:56 -04:00
|
|
|
#
|
|
|
|
# Modelled after $HADOOP_HOME/bin/hadoop-daemon.sh
|
|
|
|
|
2008-02-05 15:09:24 -05:00
|
|
|
usage="Usage: hbase-daemon.sh [--config <conf-dir>]\
|
2015-02-03 13:58:15 -05:00
|
|
|
(start|stop|restart|autorestart|foreground_start) <hbase-command> \
|
2013-04-23 13:17:04 -04:00
|
|
|
<args...>"
|
2007-06-14 18:08:56 -04:00
|
|
|
|
|
|
|
# if no args specified, show usage
|
|
|
|
if [ $# -le 1 ]; then
|
|
|
|
echo $usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2010-07-27 17:50:05 -04:00
|
|
|
bin=`dirname "${BASH_SOURCE-$0}"`
|
2010-07-12 20:24:12 -04:00
|
|
|
bin=`cd "$bin">/dev/null; pwd`
|
2007-06-14 18:08:56 -04:00
|
|
|
|
|
|
|
. "$bin"/hbase-config.sh
|
2013-02-22 06:33:11 -05:00
|
|
|
. "$bin"/hbase-common.sh
|
2007-06-14 18:08:56 -04:00
|
|
|
|
|
|
|
# get arguments
|
2007-10-08 23:25:00 -04:00
|
|
|
startStop=$1
|
2007-06-14 18:08:56 -04:00
|
|
|
shift
|
|
|
|
|
2007-10-08 23:25:00 -04:00
|
|
|
command=$1
|
2007-06-14 18:08:56 -04:00
|
|
|
shift
|
|
|
|
|
|
|
|
hbase_rotate_log ()
|
|
|
|
{
|
|
|
|
log=$1;
|
|
|
|
num=5;
|
|
|
|
if [ -n "$2" ]; then
|
|
|
|
num=$2
|
|
|
|
fi
|
|
|
|
if [ -f "$log" ]; then # rotate logs
|
|
|
|
while [ $num -gt 1 ]; do
|
|
|
|
prev=`expr $num - 1`
|
2010-10-30 16:10:31 -04:00
|
|
|
[ -f "$log.$prev" ] && mv -f "$log.$prev" "$log.$num"
|
2007-06-14 18:08:56 -04:00
|
|
|
num=$prev
|
|
|
|
done
|
2010-10-30 16:10:31 -04:00
|
|
|
mv -f "$log" "$log.$num";
|
2007-06-14 18:08:56 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-02-03 13:58:15 -05:00
|
|
|
cleanAfterRun() {
|
|
|
|
if [ -f ${HBASE_PID} ]; then
|
|
|
|
# If the process is still running time to tear it down.
|
|
|
|
kill -9 `cat ${HBASE_PID}` > /dev/null 2>&1
|
|
|
|
rm -f ${HBASE_PID} > /dev/null 2>&1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f ${HBASE_ZNODE_FILE} ]; then
|
2012-05-18 13:44:04 -04:00
|
|
|
if [ "$command" = "master" ]; then
|
|
|
|
$bin/hbase master clear > /dev/null 2>&1
|
|
|
|
else
|
|
|
|
#call ZK to delete the node
|
2015-02-03 13:58:15 -05:00
|
|
|
ZNODE=`cat ${HBASE_ZNODE_FILE}`
|
|
|
|
$bin/hbase zkcli delete ${ZNODE} > /dev/null 2>&1
|
2012-05-18 13:44:04 -04:00
|
|
|
fi
|
2015-02-03 13:58:15 -05:00
|
|
|
rm ${HBASE_ZNODE_FILE}
|
2012-05-04 11:19:47 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2012-05-11 19:49:35 -04:00
|
|
|
check_before_start(){
|
|
|
|
#ckeck if the process is not running
|
|
|
|
mkdir -p "$HBASE_PID_DIR"
|
2015-02-03 13:58:15 -05:00
|
|
|
if [ -f $HBASE_PID ]; then
|
|
|
|
if kill -0 `cat $HBASE_PID` > /dev/null 2>&1; then
|
|
|
|
echo $command running as process `cat $HBASE_PID`. Stop it first.
|
2012-05-11 19:49:35 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2010-08-13 00:12:09 -04:00
|
|
|
wait_until_done ()
|
|
|
|
{
|
|
|
|
p=$1
|
2010-10-22 15:54:21 -04:00
|
|
|
cnt=${HBASE_SLAVE_TIMEOUT:-300}
|
2010-08-13 00:12:09 -04:00
|
|
|
origcnt=$cnt
|
|
|
|
while kill -0 $p > /dev/null 2>&1; do
|
|
|
|
if [ $cnt -gt 1 ]; then
|
|
|
|
cnt=`expr $cnt - 1`
|
|
|
|
sleep 1
|
|
|
|
else
|
|
|
|
echo "Process did not complete after $origcnt seconds, killing."
|
|
|
|
kill -9 $p
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2007-06-14 18:08:56 -04:00
|
|
|
# get log directory
|
2008-02-05 15:09:24 -05:00
|
|
|
if [ "$HBASE_LOG_DIR" = "" ]; then
|
|
|
|
export HBASE_LOG_DIR="$HBASE_HOME/logs"
|
2007-06-14 18:08:56 -04:00
|
|
|
fi
|
2008-02-05 15:09:24 -05:00
|
|
|
mkdir -p "$HBASE_LOG_DIR"
|
2007-06-14 18:08:56 -04:00
|
|
|
|
2008-02-05 15:09:24 -05:00
|
|
|
if [ "$HBASE_PID_DIR" = "" ]; then
|
2012-04-26 13:30:13 -04:00
|
|
|
HBASE_PID_DIR=/tmp
|
2007-06-14 18:08:56 -04:00
|
|
|
fi
|
|
|
|
|
2008-02-05 15:09:24 -05:00
|
|
|
if [ "$HBASE_IDENT_STRING" = "" ]; then
|
|
|
|
export HBASE_IDENT_STRING="$USER"
|
2007-06-14 18:08:56 -04:00
|
|
|
fi
|
|
|
|
|
2008-05-15 15:22:54 -04:00
|
|
|
# Some variables
|
|
|
|
# Work out java location so can print version into log.
|
|
|
|
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
|
2012-05-11 19:49:35 -04:00
|
|
|
|
2008-05-15 15:22:54 -04:00
|
|
|
JAVA=$JAVA_HOME/bin/java
|
2011-11-17 17:53:42 -05:00
|
|
|
export HBASE_LOG_PREFIX=hbase-$HBASE_IDENT_STRING-$command-$HOSTNAME
|
|
|
|
export HBASE_LOGFILE=$HBASE_LOG_PREFIX.log
|
2014-09-18 20:00:53 -04:00
|
|
|
|
|
|
|
if [ -z "${HBASE_ROOT_LOGGER}" ]; then
|
2012-03-30 10:46:49 -04:00
|
|
|
export HBASE_ROOT_LOGGER=${HBASE_ROOT_LOGGER:-"INFO,RFA"}
|
2014-09-18 20:00:53 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${HBASE_SECURITY_LOGGER}" ]; then
|
2012-05-17 15:36:42 -04:00
|
|
|
export HBASE_SECURITY_LOGGER=${HBASE_SECURITY_LOGGER:-"INFO,RFAS"}
|
2014-09-18 20:00:53 -04:00
|
|
|
fi
|
|
|
|
|
2015-02-03 13:58:15 -05:00
|
|
|
HBASE_LOGOUT=${HBASE_LOGOUT:-"$HBASE_LOG_DIR/$HBASE_LOG_PREFIX.out"}
|
|
|
|
HBASE_LOGGC=${HBASE_LOGGC:-"$HBASE_LOG_DIR/$HBASE_LOG_PREFIX.gc"}
|
|
|
|
HBASE_LOGLOG=${HBASE_LOGLOG:-"${HBASE_LOG_DIR}/${HBASE_LOGFILE}"}
|
|
|
|
HBASE_PID=$HBASE_PID_DIR/hbase-$HBASE_IDENT_STRING-$command.pid
|
2012-05-04 11:19:47 -04:00
|
|
|
export HBASE_ZNODE_FILE=$HBASE_PID_DIR/hbase-$HBASE_IDENT_STRING-$command.znode
|
2012-05-11 19:49:35 -04:00
|
|
|
export HBASE_START_FILE=$HBASE_PID_DIR/hbase-$HBASE_IDENT_STRING-$command.autorestart
|
|
|
|
|
2013-04-04 16:45:25 -04:00
|
|
|
if [ -n "$SERVER_GC_OPTS" ]; then
|
2015-02-03 13:58:15 -05:00
|
|
|
export SERVER_GC_OPTS=${SERVER_GC_OPTS/"-Xloggc:<FILE-PATH>"/"-Xloggc:${HBASE_LOGGC}"}
|
2013-04-04 16:45:25 -04:00
|
|
|
fi
|
|
|
|
if [ -n "$CLIENT_GC_OPTS" ]; then
|
2015-02-03 13:58:15 -05:00
|
|
|
export CLIENT_GC_OPTS=${CLIENT_GC_OPTS/"-Xloggc:<FILE-PATH>"/"-Xloggc:${HBASE_LOGGC}"}
|
2011-11-17 17:53:42 -05:00
|
|
|
fi
|
|
|
|
|
2007-06-14 18:08:56 -04:00
|
|
|
# Set default scheduling priority
|
2008-02-05 15:09:24 -05:00
|
|
|
if [ "$HBASE_NICENESS" = "" ]; then
|
|
|
|
export HBASE_NICENESS=0
|
2007-06-14 18:08:56 -04:00
|
|
|
fi
|
|
|
|
|
2014-09-24 12:21:03 -04:00
|
|
|
thiscmd="$bin/$(basename ${BASH_SOURCE-$0})"
|
2012-05-04 11:19:47 -04:00
|
|
|
args=$@
|
|
|
|
|
2007-06-14 18:08:56 -04:00
|
|
|
case $startStop in
|
|
|
|
|
2012-05-11 19:49:35 -04:00
|
|
|
(start)
|
|
|
|
check_before_start
|
2015-02-03 13:58:15 -05:00
|
|
|
hbase_rotate_log $HBASE_LOGOUT
|
|
|
|
hbase_rotate_log $HBASE_LOGGC
|
|
|
|
echo starting $command, logging to $HBASE_LOGOUT
|
2015-09-30 18:30:15 -04:00
|
|
|
$thiscmd --config "${HBASE_CONF_DIR}" \
|
2015-02-03 13:58:15 -05:00
|
|
|
foreground_start $command $args < /dev/null > ${HBASE_LOGOUT} 2>&1 &
|
2015-09-30 18:30:15 -04:00
|
|
|
disown -h -r
|
2015-02-03 13:58:15 -05:00
|
|
|
sleep 1; head "${HBASE_LOGOUT}"
|
2012-05-11 19:49:35 -04:00
|
|
|
;;
|
2007-06-14 18:08:56 -04:00
|
|
|
|
2012-05-11 19:49:35 -04:00
|
|
|
(autorestart)
|
|
|
|
check_before_start
|
2015-02-03 13:58:15 -05:00
|
|
|
hbase_rotate_log $HBASE_LOGOUT
|
|
|
|
hbase_rotate_log $HBASE_LOGGC
|
|
|
|
nohup $thiscmd --config "${HBASE_CONF_DIR}" \
|
|
|
|
internal_autorestart $command $args < /dev/null > ${HBASE_LOGOUT} 2>&1 &
|
2012-05-11 19:49:35 -04:00
|
|
|
;;
|
|
|
|
|
2015-02-03 13:58:15 -05:00
|
|
|
(foreground_start)
|
|
|
|
trap cleanAfterRun SIGHUP SIGINT SIGTERM EXIT
|
2015-06-17 14:48:45 -04:00
|
|
|
if [ "$HBASE_NO_REDIRECT_LOG" != "" ]; then
|
|
|
|
# NO REDIRECT
|
|
|
|
echo "`date` Starting $command on `hostname`"
|
|
|
|
echo "`ulimit -a`"
|
|
|
|
# in case the parent shell gets the kill make sure to trap signals.
|
|
|
|
# Only one will get called. Either the trap or the flow will go through.
|
|
|
|
nice -n $HBASE_NICENESS "$HBASE_HOME"/bin/hbase \
|
|
|
|
--config "${HBASE_CONF_DIR}" \
|
|
|
|
$command "$@" start &
|
|
|
|
else
|
|
|
|
echo "`date` Starting $command on `hostname`" >> ${HBASE_LOGLOG}
|
|
|
|
echo "`ulimit -a`" >> "$HBASE_LOGLOG" 2>&1
|
|
|
|
# in case the parent shell gets the kill make sure to trap signals.
|
|
|
|
# Only one will get called. Either the trap or the flow will go through.
|
|
|
|
nice -n $HBASE_NICENESS "$HBASE_HOME"/bin/hbase \
|
|
|
|
--config "${HBASE_CONF_DIR}" \
|
|
|
|
$command "$@" start >> ${HBASE_LOGOUT} 2>&1 &
|
|
|
|
fi
|
|
|
|
# Add to the command log file vital stats on our environment.
|
2015-02-09 21:26:10 -05:00
|
|
|
hbase_pid=$!
|
|
|
|
echo $hbase_pid > ${HBASE_PID}
|
|
|
|
wait $hbase_pid
|
2012-05-11 19:49:35 -04:00
|
|
|
;;
|
|
|
|
|
|
|
|
(internal_autorestart)
|
|
|
|
touch "$HBASE_START_FILE"
|
|
|
|
#keep starting the command until asked to stop. Reloop on software crash
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
lastLaunchDate=`date +%s`
|
2015-02-03 13:58:15 -05:00
|
|
|
$thiscmd --config "${HBASE_CONF_DIR}" foreground_start $command $args
|
2012-05-11 19:49:35 -04:00
|
|
|
|
|
|
|
#if the file does not exist it means that it was not stopped properly by the stop command
|
|
|
|
if [ ! -f "$HBASE_START_FILE" ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#if the cluster is being stopped then do not restart it again.
|
|
|
|
zparent=`$bin/hbase org.apache.hadoop.hbase.util.HBaseConfTool zookeeper.znode.parent`
|
|
|
|
if [ "$zparent" == "null" ]; then zparent="/hbase"; fi
|
2014-07-14 01:32:55 -04:00
|
|
|
zkrunning=`$bin/hbase org.apache.hadoop.hbase.util.HBaseConfTool zookeeper.znode.state`
|
|
|
|
if [ "$zkrunning" == "null" ]; then zkrunning="running"; fi
|
|
|
|
zkFullRunning=$zparent/$zkrunning
|
|
|
|
$bin/hbase zkcli stat $zkFullRunning 2>&1 | grep "Node does not exist" 1>/dev/null 2>&1
|
2012-05-11 19:49:35 -04:00
|
|
|
#grep returns 0 if it found something, 1 otherwise
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#If ZooKeeper cannot be found, then do not restart
|
2014-07-14 01:32:55 -04:00
|
|
|
$bin/hbase zkcli stat $zkFullRunning 2>&1 | grep Exception | grep ConnectionLoss 1>/dev/null 2>&1
|
2012-05-11 19:49:35 -04:00
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#if it was launched less than 5 minutes ago, then wait for 5 minutes before starting it again.
|
|
|
|
curDate=`date +%s`
|
|
|
|
limitDate=`expr $lastLaunchDate + 300`
|
|
|
|
if [ $limitDate -gt $curDate ]; then
|
|
|
|
sleep 300
|
|
|
|
fi
|
|
|
|
done
|
2007-06-14 18:08:56 -04:00
|
|
|
;;
|
|
|
|
|
2012-05-11 19:49:35 -04:00
|
|
|
(stop)
|
|
|
|
rm -f "$HBASE_START_FILE"
|
2015-02-03 13:58:15 -05:00
|
|
|
if [ -f $HBASE_PID ]; then
|
|
|
|
pidToKill=`cat $HBASE_PID`
|
2012-05-11 19:49:35 -04:00
|
|
|
# kill -0 == see if the PID exists
|
|
|
|
if kill -0 $pidToKill > /dev/null 2>&1; then
|
2007-09-07 16:32:45 -04:00
|
|
|
echo -n stopping $command
|
2015-02-03 13:58:15 -05:00
|
|
|
echo "`date` Terminating $command" >> $HBASE_LOGLOG
|
2012-05-11 19:49:35 -04:00
|
|
|
kill $pidToKill > /dev/null 2>&1
|
2013-02-22 06:33:11 -05:00
|
|
|
waitForProcessEnd $pidToKill $command
|
2007-06-14 18:08:56 -04:00
|
|
|
else
|
2009-06-19 17:25:45 -04:00
|
|
|
retval=$?
|
2012-05-11 19:49:35 -04:00
|
|
|
echo no $command to stop because kill -0 of pid $pidToKill failed with status $retval
|
2007-06-14 18:08:56 -04:00
|
|
|
fi
|
|
|
|
else
|
2015-02-03 13:58:15 -05:00
|
|
|
echo no $command to stop because no pid file $HBASE_PID
|
2007-06-14 18:08:56 -04:00
|
|
|
fi
|
2015-02-03 13:58:15 -05:00
|
|
|
rm -f $HBASE_PID
|
2012-05-11 19:49:35 -04:00
|
|
|
;;
|
2007-06-14 18:08:56 -04:00
|
|
|
|
2012-05-11 19:49:35 -04:00
|
|
|
(restart)
|
2010-08-13 00:12:09 -04:00
|
|
|
# stop the command
|
|
|
|
$thiscmd --config "${HBASE_CONF_DIR}" stop $command $args &
|
|
|
|
wait_until_done $!
|
|
|
|
# wait a user-specified sleep period
|
2010-12-07 13:54:32 -05:00
|
|
|
sp=${HBASE_RESTART_SLEEP:-3}
|
2010-08-13 00:12:09 -04:00
|
|
|
if [ $sp -gt 0 ]; then
|
|
|
|
sleep $sp
|
|
|
|
fi
|
|
|
|
# start the command
|
|
|
|
$thiscmd --config "${HBASE_CONF_DIR}" start $command $args &
|
|
|
|
wait_until_done $!
|
2012-05-11 19:49:35 -04:00
|
|
|
;;
|
2007-06-14 18:08:56 -04:00
|
|
|
|
2012-05-11 19:49:35 -04:00
|
|
|
(*)
|
|
|
|
echo $usage
|
|
|
|
exit 1
|
|
|
|
;;
|
2007-06-14 18:08:56 -04:00
|
|
|
esac
|