blob: 79dbd97397c18ff7fb0576e0e18a2d468506f9f7 [file]
#!/bin/bash
#
# @@@ START COPYRIGHT @@@
#
# 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.
#
# @@@ END COPYRIGHT @@@
#
if [ -z $JAVA_HOME ]; then
echo "The environment variable \$JAVA_HOME has not been set"
echo "Please ensure \$TRAF_HOME/sqenv.sh has been sourced."
echo
exit 1;
fi
mkdir -p $TRAF_HOME/logs
lv_stderr_file="$TRAF_HOME/logs/hbcheck.log"
echo "Stderr being written to the file: ${lv_stderr_file}"
for interval in 5 10 15 30
do
$JAVA_HOME/bin/java -Xmx512m org.trafodion.dtm.hbstatus $* 2>>${lv_stderr_file}
if [[ $? == 0 ]]
then
exit 0
fi
echo "HBase not available. Waiting $interval seconds."
sleep $interval
done
$JAVA_HOME/bin/java -Xmx512m org.trafodion.dtm.hbstatus $* 2>>${lv_stderr_file}
exit $?