MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
|
|
# Runs a yarn command as a daemon.
|
|
|
|
#
|
|
|
|
# Environment Variables
|
|
|
|
#
|
2012-09-25 23:37:32 +00:00
|
|
|
# YARN_CONF_DIR Alternate conf dir. Default is ${HADOOP_YARN_HOME}/conf.
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
# YARN_LOG_DIR Where log files are stored. PWD by default.
|
|
|
|
# YARN_MASTER host:path where hadoop code should be rsync'd from
|
|
|
|
# YARN_PID_DIR The pid files are stored. /tmp by default.
|
|
|
|
# YARN_IDENT_STRING A string representing this instance of hadoop. $USER by default
|
|
|
|
# YARN_NICENESS The scheduling priority for daemons. Defaults to 0.
|
|
|
|
##
|
|
|
|
|
|
|
|
usage="Usage: yarn-daemon.sh [--config <conf-dir>] [--hosts hostlistfile] (start|stop) <yarn-command> "
|
|
|
|
|
|
|
|
# if no args specified, show usage
|
|
|
|
if [ $# -le 1 ]; then
|
|
|
|
echo $usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2011-09-30 23:58:58 +00:00
|
|
|
bin=`dirname "${BASH_SOURCE-$0}"`
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
bin=`cd "$bin"; pwd`
|
|
|
|
|
2011-12-16 09:09:28 +00:00
|
|
|
DEFAULT_LIBEXEC_DIR="$bin"/../libexec
|
2011-11-18 00:57:08 +00:00
|
|
|
HADOOP_LIBEXEC_DIR=${HADOOP_LIBEXEC_DIR:-$DEFAULT_LIBEXEC_DIR}
|
|
|
|
. $HADOOP_LIBEXEC_DIR/yarn-config.sh
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
|
|
|
|
# get arguments
|
|
|
|
startStop=$1
|
|
|
|
shift
|
|
|
|
command=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
hadoop_rotate_log ()
|
|
|
|
{
|
|
|
|
log=$1;
|
|
|
|
num=5;
|
|
|
|
if [ -n "$2" ]; then
|
|
|
|
num=$2
|
|
|
|
fi
|
|
|
|
if [ -f "$log" ]; then # rotate logs
|
|
|
|
while [ $num -gt 1 ]; do
|
|
|
|
prev=`expr $num - 1`
|
|
|
|
[ -f "$log.$prev" ] && mv "$log.$prev" "$log.$num"
|
|
|
|
num=$prev
|
|
|
|
done
|
|
|
|
mv "$log" "$log.$num";
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ -f "${YARN_CONF_DIR}/yarn-env.sh" ]; then
|
|
|
|
. "${YARN_CONF_DIR}/yarn-env.sh"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$YARN_IDENT_STRING" = "" ]; then
|
|
|
|
export YARN_IDENT_STRING="$USER"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# get log directory
|
|
|
|
if [ "$YARN_LOG_DIR" = "" ]; then
|
2012-09-25 23:37:32 +00:00
|
|
|
export YARN_LOG_DIR="$HADOOP_YARN_HOME/logs"
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
fi
|
2012-02-02 18:45:07 +00:00
|
|
|
|
|
|
|
if [ ! -w "$YARN_LOG_DIR" ] ; then
|
|
|
|
mkdir -p "$YARN_LOG_DIR"
|
|
|
|
chown $YARN_IDENT_STRING $YARN_LOG_DIR
|
|
|
|
fi
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
|
|
|
|
if [ "$YARN_PID_DIR" = "" ]; then
|
|
|
|
YARN_PID_DIR=/tmp
|
|
|
|
fi
|
|
|
|
|
|
|
|
# some variables
|
|
|
|
export YARN_LOGFILE=yarn-$YARN_IDENT_STRING-$command-$HOSTNAME.log
|
2012-03-29 20:53:44 +00:00
|
|
|
export YARN_ROOT_LOGGER=${YARN_ROOT_LOGGER:-INFO,RFA}
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
log=$YARN_LOG_DIR/yarn-$YARN_IDENT_STRING-$command-$HOSTNAME.out
|
|
|
|
pid=$YARN_PID_DIR/yarn-$YARN_IDENT_STRING-$command.pid
|
2012-05-11 16:15:18 +00:00
|
|
|
YARN_STOP_TIMEOUT=${YARN_STOP_TIMEOUT:-5}
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
|
|
|
|
# Set default scheduling priority
|
|
|
|
if [ "$YARN_NICENESS" = "" ]; then
|
|
|
|
export YARN_NICENESS=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
case $startStop in
|
|
|
|
|
|
|
|
(start)
|
|
|
|
|
2012-02-02 18:45:07 +00:00
|
|
|
[ -w "$YARN_PID_DIR" ] || mkdir -p "$YARN_PID_DIR"
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
|
|
|
|
if [ -f $pid ]; then
|
|
|
|
if kill -0 `cat $pid` > /dev/null 2>&1; then
|
|
|
|
echo $command running as process `cat $pid`. Stop it first.
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$YARN_MASTER" != "" ]; then
|
|
|
|
echo rsync from $YARN_MASTER
|
2012-09-25 23:37:32 +00:00
|
|
|
rsync -a -e ssh --delete --exclude=.svn --exclude='logs/*' --exclude='contrib/hod/logs/*' $YARN_MASTER/ "$HADOOP_YARN_HOME"
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
hadoop_rotate_log $log
|
|
|
|
echo starting $command, logging to $log
|
2012-09-25 23:37:32 +00:00
|
|
|
cd "$HADOOP_YARN_HOME"
|
|
|
|
nohup nice -n $YARN_NICENESS "$HADOOP_YARN_HOME"/bin/yarn --config $YARN_CONF_DIR $command "$@" > "$log" 2>&1 < /dev/null &
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
echo $! > $pid
|
2013-02-07 14:52:58 +00:00
|
|
|
sleep 1
|
|
|
|
# capture the ulimit output
|
|
|
|
echo "ulimit -a" >> $log
|
|
|
|
ulimit -a >> $log 2>&1
|
|
|
|
head -30 "$log"
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
(stop)
|
|
|
|
|
|
|
|
if [ -f $pid ]; then
|
2012-05-11 16:15:18 +00:00
|
|
|
TARGET_PID=`cat $pid`
|
|
|
|
if kill -0 $TARGET_PID > /dev/null 2>&1; then
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
echo stopping $command
|
2012-05-11 16:15:18 +00:00
|
|
|
kill $TARGET_PID
|
|
|
|
sleep $YARN_STOP_TIMEOUT
|
|
|
|
if kill -0 $TARGET_PID > /dev/null 2>&1; then
|
|
|
|
echo "$command did not stop gracefully after $YARN_STOP_TIMEOUT seconds: killing with kill -9"
|
|
|
|
kill -9 $TARGET_PID
|
|
|
|
fi
|
MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1159166 13f79535-47bb-0310-9956-ffa450edef68
2011-08-18 11:07:10 +00:00
|
|
|
else
|
|
|
|
echo no $command to stop
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo no $command to stop
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
(*)
|
|
|
|
echo $usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|