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
|
|
|
# Modelled after $HADOOP_HOME/bin/start-hbase.sh.
|
|
|
|
|
|
|
|
# Start hadoop hbase daemons.
|
|
|
|
# Run this on master node.
|
2016-10-19 05:02:40 -04:00
|
|
|
usage="Usage: start-hbase.sh [--autostart-window-size <window size in hours>]\
|
|
|
|
[--autostart-window-retry-limit <retry count limit for autostart>]\
|
|
|
|
[autostart|start]"
|
2007-06-14 18:08:56 -04:00
|
|
|
|
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
|
|
|
|
2016-10-19 05:02:40 -04:00
|
|
|
# default autostart args value indicating infinite window size and no retry limit
|
|
|
|
AUTOSTART_WINDOW_SIZE=0
|
|
|
|
AUTOSTART_WINDOW_RETRY_LIMIT=0
|
|
|
|
|
2007-06-14 18:08:56 -04:00
|
|
|
. "$bin"/hbase-config.sh
|
|
|
|
|
|
|
|
# start hbase daemons
|
2007-08-30 11:39:11 -04:00
|
|
|
errCode=$?
|
|
|
|
if [ $errCode -ne 0 ]
|
|
|
|
then
|
|
|
|
exit $errCode
|
|
|
|
fi
|
2009-07-09 15:04:43 -04:00
|
|
|
|
2016-10-19 05:02:40 -04:00
|
|
|
if [ "$1" = "autostart" ]
|
2013-04-23 13:17:04 -04:00
|
|
|
then
|
2016-10-19 05:02:40 -04:00
|
|
|
commandToRun="--autostart-window-size ${AUTOSTART_WINDOW_SIZE} --autostart-window-retry-limit ${AUTOSTART_WINDOW_RETRY_LIMIT} autostart"
|
|
|
|
else
|
2012-05-11 19:49:35 -04:00
|
|
|
commandToRun="start"
|
|
|
|
fi
|
|
|
|
|
2012-09-15 03:32:52 -04:00
|
|
|
# HBASE-6504 - only take the first line of the output in case verbose gc is on
|
|
|
|
distMode=`$bin/hbase --config "$HBASE_CONF_DIR" org.apache.hadoop.hbase.util.HBaseConfTool hbase.cluster.distributed | head -n 1`
|
2010-01-19 20:42:12 -05:00
|
|
|
|
2016-10-19 05:02:40 -04:00
|
|
|
if [ "$distMode" == 'false' ]
|
2010-01-19 20:42:12 -05:00
|
|
|
then
|
2016-10-19 05:02:40 -04:00
|
|
|
"$bin"/hbase-daemon.sh --config "${HBASE_CONF_DIR}" $commandToRun master
|
2010-01-19 20:42:12 -05:00
|
|
|
else
|
2012-05-11 19:49:35 -04:00
|
|
|
"$bin"/hbase-daemons.sh --config "${HBASE_CONF_DIR}" $commandToRun zookeeper
|
2016-10-19 05:02:40 -04:00
|
|
|
"$bin"/hbase-daemon.sh --config "${HBASE_CONF_DIR}" $commandToRun master
|
2010-05-18 15:24:36 -04:00
|
|
|
"$bin"/hbase-daemons.sh --config "${HBASE_CONF_DIR}" \
|
2012-05-11 19:49:35 -04:00
|
|
|
--hosts "${HBASE_REGIONSERVERS}" $commandToRun regionserver
|
2010-08-10 12:54:40 -04:00
|
|
|
"$bin"/hbase-daemons.sh --config "${HBASE_CONF_DIR}" \
|
2012-05-11 19:49:35 -04:00
|
|
|
--hosts "${HBASE_BACKUP_MASTERS}" $commandToRun master-backup
|
2010-01-19 20:42:12 -05:00
|
|
|
fi
|