2007-08-22 22:19:18 -04:00
|
|
|
#!/usr/bin/env bash
|
2007-07-12 18:08:25 -04:00
|
|
|
#
|
|
|
|
#/**
|
|
|
|
# * Copyright 2007 The Apache Software Foundation
|
|
|
|
# *
|
|
|
|
# * 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
|
|
|
|
#
|
|
|
|
# HADOOP_CONF_DIR Alternate conf dir. Default is ${HADOOP_HOME}/conf.
|
|
|
|
# HBASE_CONF_DIR Alternate hbase conf dir. Default is ${HBASE_HOME}/conf.
|
|
|
|
# HADOOP_LOG_DIR Where log files are stored. PWD by default.
|
|
|
|
# HADOOP_PID_DIR The pid files are stored. /tmp by default.
|
|
|
|
# HADOOP_IDENT_STRING A string representing this instance of hadoop. $USER by default
|
|
|
|
# HADOOP_NICENESS The scheduling priority for daemons. Defaults to 0.
|
|
|
|
#
|
|
|
|
# Modelled after $HADOOP_HOME/bin/hadoop-daemon.sh
|
|
|
|
|
2007-09-21 05:27:46 -04:00
|
|
|
usage="Usage: hbase-daemon.sh [--config <hadoop-conf-dir>]\
|
2007-10-08 23:25:00 -04:00
|
|
|
[--hbaseconfig <hbase-conf-dir>] (start|stop) <hbase-command> \
|
2007-09-19 12:45:01 -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
|
|
|
|
|
|
|
|
bin=`dirname "$0"`
|
|
|
|
bin=`cd "$bin"; pwd`
|
|
|
|
|
|
|
|
. "$bin"/hbase-config.sh
|
|
|
|
|
|
|
|
# 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`
|
|
|
|
[ -f "$log.$prev" ] && mv "$log.$prev" "$log.$num"
|
|
|
|
num=$prev
|
|
|
|
done
|
|
|
|
mv "$log" "$log.$num";
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ -f "${HADOOP_CONF_DIR}/hadoop-env.sh" ]; then
|
|
|
|
. "${HADOOP_CONF_DIR}/hadoop-env.sh"
|
|
|
|
fi
|
|
|
|
if [ -f "${HBASE_CONF_DIR}/hbase-env.sh" ]; then
|
|
|
|
. "${HBASE_CONF_DIR}/hbase-env.sh"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# get log directory
|
|
|
|
if [ "$HADOOP_LOG_DIR" = "" ]; then
|
|
|
|
export HADOOP_LOG_DIR="$HADOOP_HOME/logs"
|
|
|
|
fi
|
|
|
|
mkdir -p "$HADOOP_LOG_DIR"
|
|
|
|
|
|
|
|
if [ "$HADOOP_PID_DIR" = "" ]; then
|
|
|
|
HADOOP_PID_DIR=/tmp
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$HADOOP_IDENT_STRING" = "" ]; then
|
|
|
|
export HADOOP_IDENT_STRING="$USER"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# some variables
|
2007-10-30 15:08:23 -04:00
|
|
|
export HADOOP_LOGFILE=hbase-$HADOOP_IDENT_STRING-$command-$HOSTNAME.log
|
2007-06-14 18:08:56 -04:00
|
|
|
export HADOOP_ROOT_LOGGER="INFO,DRFA"
|
2007-10-30 15:08:23 -04:00
|
|
|
log=$HADOOP_LOG_DIR/hbase-$HADOOP_IDENT_STRING-$command-$HOSTNAME.out
|
2007-06-14 18:08:56 -04:00
|
|
|
pid=$HADOOP_PID_DIR/hbase-$HADOOP_IDENT_STRING-$command.pid
|
|
|
|
|
|
|
|
# Set default scheduling priority
|
|
|
|
if [ "$HADOOP_NICENESS" = "" ]; then
|
|
|
|
export HADOOP_NICENESS=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
case $startStop in
|
|
|
|
|
|
|
|
(start)
|
|
|
|
if [ -f $pid ]; then
|
|
|
|
if kill -0 `cat $pid` > /dev/null 2>&1; then
|
|
|
|
echo $command running as process `cat $pid`. Stop it first.
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
hbase_rotate_log $log
|
|
|
|
echo starting $command, logging to $log
|
2007-09-19 12:45:01 -04:00
|
|
|
nohup nice -n $HADOOP_NICENESS "$HBASE_HOME"/bin/hbase \
|
2007-09-21 05:27:46 -04:00
|
|
|
--hadoop "${HADOOP_HOME}" \
|
|
|
|
--config "${HADOOP_CONF_DIR}" --hbaseconfig "${HBASE_CONF_DIR}" \
|
2007-09-19 12:45:01 -04:00
|
|
|
$command $startStop "$@" > "$log" 2>&1 < /dev/null &
|
2007-06-14 18:08:56 -04:00
|
|
|
echo $! > $pid
|
|
|
|
sleep 1; head "$log"
|
|
|
|
;;
|
|
|
|
|
|
|
|
(stop)
|
|
|
|
if [ -f $pid ]; then
|
|
|
|
if kill -0 `cat $pid` > /dev/null 2>&1; then
|
2007-09-07 16:32:45 -04:00
|
|
|
echo -n stopping $command
|
2007-12-14 12:12:09 -05:00
|
|
|
if [ "$command" = "regionserver" ]; then
|
|
|
|
kill `cat $pid` > /dev/null 2>&1
|
|
|
|
else
|
|
|
|
nohup nice -n $HADOOP_NICENESS "$HBASE_HOME"/bin/hbase \
|
|
|
|
--hadoop "${HADOOP_HOME}" \
|
|
|
|
--config "${HADOOP_CONF_DIR}" --hbaseconfig "${HBASE_CONF_DIR}" \
|
|
|
|
$command $startStop "$@" > "$log" 2>&1 < /dev/null &
|
|
|
|
fi
|
2007-09-07 16:32:45 -04:00
|
|
|
while kill -0 `cat $pid` > /dev/null 2>&1; do
|
|
|
|
echo -n "."
|
|
|
|
sleep 1;
|
|
|
|
done
|
|
|
|
echo
|
2007-06-14 18:08:56 -04:00
|
|
|
else
|
|
|
|
echo no $command to stop
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo no $command to stop
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
(*)
|
|
|
|
echo $usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|