2010-07-19 18:59:51 -04:00
|
|
|
#!/bin/sh
|
2011-10-23 19:03:32 -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.
|
|
|
|
# */
|
2010-07-19 18:59:51 -04:00
|
|
|
# This is used for starting multiple regionservers on the same machine.
|
|
|
|
# run it from hbase-dir/ just like 'bin/hbase'
|
|
|
|
# Supports up to 100 regionservers (limitation = overlapping ports)
|
|
|
|
|
2010-07-27 17:50:05 -04:00
|
|
|
bin=`dirname "${BASH_SOURCE-$0}"`
|
2010-07-19 18:59:51 -04:00
|
|
|
bin=`cd "$bin" >/dev/null && pwd`
|
|
|
|
|
|
|
|
if [ $# -lt 2 ]; then
|
2010-07-27 17:50:05 -04:00
|
|
|
S=`basename "${BASH_SOURCE-$0}"`
|
2013-06-19 00:51:01 -04:00
|
|
|
echo "Usage: $S [--config <conf-dir>] [start|stop] offset(s)"
|
2010-07-19 18:59:51 -04:00
|
|
|
echo ""
|
|
|
|
echo " e.g. $S start 1 2"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2013-06-19 00:51:01 -04:00
|
|
|
. "$bin"/hbase-config.sh
|
|
|
|
|
2010-07-19 18:59:51 -04:00
|
|
|
# sanity check: make sure your regionserver opts don't use ports [i.e. JMX/DBG]
|
|
|
|
export HBASE_REGIONSERVER_OPTS=" "
|
|
|
|
|
|
|
|
run_regionserver () {
|
|
|
|
DN=$2
|
|
|
|
export HBASE_IDENT_STRING="$USER-$DN"
|
|
|
|
HBASE_REGIONSERVER_ARGS="\
|
|
|
|
-D hbase.regionserver.port=`expr 60200 + $DN` \
|
|
|
|
-D hbase.regionserver.info.port=`expr 60300 + $DN`"
|
2013-06-19 00:51:01 -04:00
|
|
|
"$bin"/hbase-daemon.sh --config "${HBASE_CONF_DIR}" $1 regionserver $HBASE_REGIONSERVER_ARGS
|
2010-07-19 18:59:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd=$1
|
|
|
|
shift;
|
|
|
|
|
|
|
|
for i in $*
|
|
|
|
do
|
|
|
|
run_regionserver $cmd $i
|
|
|
|
done
|