2011-04-05 00:08:24 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
#/**
|
|
|
|
# * Copyright 2011 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.
|
|
|
|
# */
|
2012-04-24 11:33:24 -04:00
|
|
|
|
2011-04-05 00:08:24 -04:00
|
|
|
# Move regions off a server then stop it. Optionally restart and reload.
|
|
|
|
# Turn off the balancer before running this script.
|
|
|
|
function usage {
|
2013-06-19 00:42:15 -04:00
|
|
|
echo "Usage: graceful_stop.sh [--config <conf-dir>] [-d] [-e] [--restart [--reload]] [--thrift] [--rest] <hostname>"
|
2011-04-06 19:14:01 -04:00
|
|
|
echo " thrift If we should stop/start thrift before/after the hbase stop/start"
|
|
|
|
echo " rest If we should stop/start rest before/after the hbase stop/start"
|
2011-04-05 00:08:24 -04:00
|
|
|
echo " restart If we should restart after graceful stop"
|
2013-06-19 00:42:15 -04:00
|
|
|
echo " reload Move offloaded regions back on to the restarted server"
|
|
|
|
echo " d|debug Print helpful debug information"
|
2011-04-05 00:08:24 -04:00
|
|
|
echo " hostname Hostname of server we are to stop"
|
2013-06-19 00:42:15 -04:00
|
|
|
echo " e|failfast Set -e so exit immediately if any command exits with non-zero status"
|
2011-04-05 00:08:24 -04:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ $# -lt 1 ]; then
|
|
|
|
usage
|
|
|
|
fi
|
|
|
|
|
|
|
|
bin=`dirname "$0"`
|
|
|
|
bin=`cd "$bin">/dev/null; pwd`
|
|
|
|
# This will set HBASE_HOME, etc.
|
|
|
|
. "$bin"/hbase-config.sh
|
|
|
|
# Get arguments
|
|
|
|
restart=
|
|
|
|
reload=
|
|
|
|
debug=
|
2011-04-06 19:14:01 -04:00
|
|
|
thrift=
|
|
|
|
rest=
|
2013-06-19 00:42:15 -04:00
|
|
|
failfast=
|
2011-04-05 00:08:24 -04:00
|
|
|
while [ $# -gt 0 ]
|
|
|
|
do
|
|
|
|
case "$1" in
|
2011-04-06 19:14:01 -04:00
|
|
|
--thrift) thrift=true; shift;;
|
|
|
|
--rest) rest=true; shift;;
|
2011-04-05 00:08:24 -04:00
|
|
|
--restart) restart=true; shift;;
|
|
|
|
--reload) reload=true; shift;;
|
2013-06-19 00:42:15 -04:00
|
|
|
--failfast) ;&
|
|
|
|
-e) failfast=true; shift;;
|
|
|
|
--debug) ;&
|
|
|
|
-d) debug="--debug"; shift;;
|
2011-04-05 00:08:24 -04:00
|
|
|
--) shift; break;;
|
|
|
|
-*) usage ;;
|
|
|
|
*) break;; # terminate while loop
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
# "$@" contains the rest. Must be at least the hostname left.
|
|
|
|
if [ $# -lt 1 ]; then
|
|
|
|
usage
|
|
|
|
fi
|
|
|
|
|
2013-06-19 00:42:15 -04:00
|
|
|
# Emit a log line w/ iso8901 date prefixed
|
|
|
|
log() {
|
|
|
|
echo `date +%Y-%m-%dT%H:%M:%S` $1
|
|
|
|
}
|
|
|
|
|
|
|
|
# See if we should set fail fast before we do anything.
|
|
|
|
if [ "$failfast" != "" ]; then
|
|
|
|
log "Set failfast, will exit immediately if any command exits with non-zero status"
|
|
|
|
set -e
|
|
|
|
fi
|
|
|
|
|
2011-04-05 00:08:24 -04:00
|
|
|
hostname=$1
|
|
|
|
filename="/tmp/$hostname"
|
2013-06-19 00:42:15 -04:00
|
|
|
|
|
|
|
log "Disabling load balancer"
|
2013-04-22 14:32:03 -04:00
|
|
|
HBASE_BALANCER_STATE=`echo 'balance_switch false' | "$bin"/hbase --config ${HBASE_CONF_DIR} shell | tail -3 | head -1`
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Previous balancer state was $HBASE_BALANCER_STATE"
|
|
|
|
|
|
|
|
log "Unloading $hostname region(s)"
|
2011-12-08 14:19:45 -05:00
|
|
|
HBASE_NOEXEC=true "$bin"/hbase --config ${HBASE_CONF_DIR} org.jruby.Main "$bin"/region_mover.rb --file=$filename $debug unload $hostname
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Unloaded $hostname region(s)"
|
|
|
|
|
|
|
|
# Stop the server(s). Have to put hostname into its own little file for hbase-daemons.sh
|
2011-04-05 00:08:24 -04:00
|
|
|
hosts="/tmp/$(basename $0).$$.tmp"
|
|
|
|
echo $hostname >> $hosts
|
2011-04-06 19:14:01 -04:00
|
|
|
if [ "$thrift" != "" ]; then
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Stopping thrift"
|
2011-12-08 14:19:45 -05:00
|
|
|
"$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} stop thrift
|
2011-04-06 19:14:01 -04:00
|
|
|
fi
|
|
|
|
if [ "$rest" != "" ]; then
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Stopping rest"
|
2011-12-08 14:19:45 -05:00
|
|
|
"$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} stop rest
|
2011-04-06 19:14:01 -04:00
|
|
|
fi
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Stopping regionserver"
|
2011-12-08 14:19:45 -05:00
|
|
|
"$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} stop regionserver
|
2013-06-19 00:42:15 -04:00
|
|
|
|
2011-04-05 00:08:24 -04:00
|
|
|
if [ "$restart" != "" ]; then
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Restarting regionserver"
|
2011-12-08 14:19:45 -05:00
|
|
|
"$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} start regionserver
|
2011-04-06 19:14:01 -04:00
|
|
|
if [ "$thrift" != "" ]; then
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Restarting thrift"
|
2011-04-06 19:14:01 -04:00
|
|
|
# -b 0.0.0.0 says listen on all interfaces rather than just default.
|
2011-12-08 14:19:45 -05:00
|
|
|
"$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} start thrift -b 0.0.0.0
|
2011-04-06 19:14:01 -04:00
|
|
|
fi
|
|
|
|
if [ "$rest" != "" ]; then
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Restarting rest"
|
2011-12-08 14:19:45 -05:00
|
|
|
"$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} start rest
|
2011-04-06 19:14:01 -04:00
|
|
|
fi
|
2011-04-05 00:08:24 -04:00
|
|
|
if [ "$reload" != "" ]; then
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Reloading $hostname region(s)"
|
2011-12-08 14:19:45 -05:00
|
|
|
HBASE_NOEXEC=true "$bin"/hbase --config ${HBASE_CONF_DIR} org.jruby.Main "$bin"/region_mover.rb --file=$filename $debug load $hostname
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Reloaded $hostname region(s)"
|
2011-04-05 00:08:24 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2013-06-19 00:42:15 -04:00
|
|
|
# Restore balancer state
|
2013-04-22 14:32:03 -04:00
|
|
|
if [ $HBASE_BALANCER_STATE != "false" ]; then
|
2013-06-19 00:42:15 -04:00
|
|
|
log "Restoring balancer state to " $HBASE_BALANCER_STATE
|
|
|
|
log "balance_switch $HBASE_BALANCER_STATE" | "$bin"/hbase --config ${HBASE_CONF_DIR} shell &> /dev/null
|
2013-04-22 14:32:03 -04:00
|
|
|
fi
|
|
|
|
|
2011-04-05 00:08:24 -04:00
|
|
|
# Cleanup tmp files.
|
|
|
|
trap "rm -f "/tmp/$(basename $0).*.tmp" &> /dev/null" EXIT
|