blob: ac4af5cceaf47f0229f4c75afa05c94e1b4726dd [file] [log] [blame]
#! /usr/bin/env bash
# Copyright 2014 Uno authors (see AUTHORS)
#
# Licensed 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.
source "$UNO_HOME"/bin/impl/util.sh
case "$1" in
accumulo)
check_dirs ACCUMULO_HOME
if [[ ! -z "$(pgrep -f accumulo\\.start)" ]]; then
if [[ $ACCUMULO_VERSION =~ ^1\..*$ ]]; then
"$ACCUMULO_HOME"/bin/stop-all.sh
else
"$ACCUMULO_HOME"/bin/accumulo-cluster stop
fi
fi
if [[ "$2" != "--no-deps" ]]; then
check_dirs ZOOKEEPER_HOME HADOOP_HOME
if [[ ! -z "$(pgrep -f hadoop\\.yarn)" ]]; then
"$HADOOP_HOME"/sbin/stop-yarn.sh
fi
if [[ ! -z "$(pgrep -f hadoop\\.hdfs)" ]]; then
"$HADOOP_HOME"/sbin/stop-dfs.sh
fi
if [[ ! -z "$(pgrep -f QuorumPeerMain)" ]]; then
"$ZOOKEEPER_HOME"/bin/zkServer.sh stop
fi
fi
;;
hadoop)
check_dirs HADOOP_HOME
if [[ ! -z "$(pgrep -f hadoop\\.yarn)" ]]; then
"$HADOOP_HOME"/sbin/stop-yarn.sh
fi
if [[ ! -z "$(pgrep -f hadoop\\.hdfs)" ]]; then
"$HADOOP_HOME"/sbin/stop-dfs.sh
fi
;;
zookeeper)
check_dirs ZOOKEEPER_HOME
if [[ ! -z "$(pgrep -f QuorumPeerMain)" ]]; then
"$ZOOKEEPER_HOME"/bin/zkServer.sh stop
fi
;;
# NYI
# fluo)
#
# ;;
# spark)
#
# ;;
# metrics)
#
# ;;
*)
echo "Usage: uno stop <component> [--no-deps]"
echo -e "\nPossible components:\n"
echo " accumulo Stop Apache Accumulo plus dependencies: Hadoop, ZooKeeper"
echo " hadoop Stop Apache Hadoop"
echo " zookeeper Stop Apache ZooKeeper"
echo "Options:"
echo " --no-deps Dependencies will stop unless this option is specified. Only works for accumulo component."
exit 1
;;
esac