3 # * Licensed to the Apache Software Foundation (ASF) under one
4 # * or more contributor license agreements. See the NOTICE file
5 # * distributed with this work for additional information
6 # * regarding copyright ownership. The ASF licenses this file
7 # * to you under the Apache License, Version 2.0 (the
8 # * "License"); you may not use this file except in compliance
9 # * with the License. You may obtain a copy of the License at
11 # * http://www.apache.org/licenses/LICENSE-2.0
13 # * Unless required by applicable law or agreed to in writing, software
14 # * distributed under the License is distributed on an "AS IS" BASIS,
15 # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # * See the License for the specific language governing permissions and
17 # * limitations under the License.
20 # included in all the hbase scripts with source command
21 # should not be executable directly
22 # also should not be passed any arguments, since we need original $*
23 # Modelled after $HADOOP_HOME/bin/hadoop-env.sh.
25 # resolve links - "${BASH_SOURCE-$0}" may be a softlink
27 this
="${BASH_SOURCE-$0}"
28 while [ -h "$this" ]; do
30 link
=`expr "$ls" : '.*-> \(.*\)$'`
31 if expr "$link" : '.*/.*' > /dev
/null
; then
34 this
=`dirname "$this"`/"$link"
38 # convert relative path to absolute path
40 script=`basename "$this"`
41 bin
=`cd "$bin">/dev/null; pwd`
44 # the root of the hbase installation
45 if [ -z "$HBASE_HOME" ]; then
46 export HBASE_HOME
=`dirname "$this"`/..
49 #check to see if the conf dir or hbase home are given as an optional arguments
52 if [ "--config" = "$1" ]
57 HBASE_CONF_DIR
=$confdir
58 elif [ "--hosts" = "$1" ]
63 HBASE_REGIONSERVERS
=$hosts
64 elif [ "--auth-as-server" = "$1" ]
67 # shellcheck disable=SC2034
69 elif [ "--autostart-window-size" = "$1" ]
72 AUTOSTART_WINDOW_SIZE
=$
(( $1 + 0 ))
73 if [ $AUTOSTART_WINDOW_SIZE -lt 0 ]; then
74 echo "Invalid value for --autostart-window-size, should be a positive integer"
78 elif [ "--autostart-window-retry-limit" = "$1" ]
81 AUTOSTART_WINDOW_RETRY_LIMIT
=$
(( $1 + 0 ))
82 if [ $AUTOSTART_WINDOW_RETRY_LIMIT -lt 0 ]; then
83 echo "Invalid value for --autostart-window-retry-limit, should be a positive integer"
87 elif [ "--internal-classpath" = "$1" ]
90 # shellcheck disable=SC2034
91 INTERNAL_CLASSPATH
="true"
92 elif [ "--debug" = "$1" ]
95 # shellcheck disable=SC2034
98 # Presume we are at end of options and break
103 # Allow alternate hbase conf dir location.
104 HBASE_CONF_DIR
="${HBASE_CONF_DIR:-$HBASE_HOME/conf}"
105 # List of hbase regions servers.
106 HBASE_REGIONSERVERS
="${HBASE_REGIONSERVERS:-$HBASE_CONF_DIR/regionservers}"
107 # List of hbase secondary masters.
108 HBASE_BACKUP_MASTERS
="${HBASE_BACKUP_MASTERS:-$HBASE_CONF_DIR/backup-masters}"
109 if [ -n "$HBASE_JMX_BASE" ] && [ -z "$HBASE_JMX_OPTS" ]; then
110 HBASE_JMX_OPTS
="$HBASE_JMX_BASE"
113 if [ -n "$HBASE_JMX_OPTS" ] && [ -z "$HBASE_THRIFT_JMX_OPTS" ]; then
114 HBASE_THRIFT_JMX_OPTS
="$HBASE_JMX_OPTS -Dcom.sun.management.jmxremote.port=10103"
117 if [ -z "$HBASE_THRIFT_OPTS" ]; then
118 export HBASE_THRIFT_OPTS
="$HBASE_THRIFT_JMX_OPTS"
122 if [ -n "$HBASE_JMX_OPTS" ] && [ -z "$HBASE_REST_JMX_OPTS" ]; then
123 HBASE_REST_JMX_OPTS
="$HBASE_JMX_OPTS -Dcom.sun.management.jmxremote.port=10105"
126 if [ -z "$HBASE_REST_OPTS" ]; then
127 export HBASE_REST_OPTS
="$HBASE_REST_JMX_OPTS"
130 # Source the hbase-env.sh. Will have JAVA_HOME defined.
131 # HBASE-7817 - Source the hbase-env.sh only if it has not already been done. HBASE_ENV_INIT keeps track of it.
132 if [ -z "$HBASE_ENV_INIT" ] && [ -f "${HBASE_CONF_DIR}/hbase-env.sh" ]; then
133 .
"${HBASE_CONF_DIR}/hbase-env.sh"
134 export HBASE_ENV_INIT
="true"
137 # Verify if hbase has the mlock agent
138 if [ "$HBASE_REGIONSERVER_MLOCK" = "true" ]; then
139 MLOCK_AGENT
="$HBASE_HOME/lib/native/libmlockall_agent.so"
140 if [ ! -f "$MLOCK_AGENT" ]; then
142 Unable to find mlockall_agent, hbase must be compiled with -Pnative
146 if [ -z "$HBASE_REGIONSERVER_UID" ] ||
[ "$HBASE_REGIONSERVER_UID" == "$USER" ]; then
147 HBASE_REGIONSERVER_OPTS
="$HBASE_REGIONSERVER_OPTS -agentpath:$MLOCK_AGENT"
149 HBASE_REGIONSERVER_OPTS
="$HBASE_REGIONSERVER_OPTS -agentpath:$MLOCK_AGENT=user=$HBASE_REGIONSERVER_UID"
153 # Newer versions of glibc use an arena memory allocator that causes virtual
154 # memory usage to explode. Tune the variable down to prevent vmem explosion.
155 export MALLOC_ARENA_MAX
=${MALLOC_ARENA_MAX:-4}
157 # Now having JAVA_HOME defined is required
158 if [ -z "$JAVA_HOME" ]; then
160 +======================================================================+
161 | Error: JAVA_HOME is not set |
162 +----------------------------------------------------------------------+
163 | Please download the latest Sun JDK from the Sun Java web site |
164 | > http://www.oracle.com/technetwork/java/javase/downloads |
166 | HBase requires Java 1.8 or later. |
167 +======================================================================+