MAPREDUCE-3588. Fixed bin/yarn which was broken by MAPREDUCE-3366 so that yarn daemons can start. Contributed by Arun C Murthy.
svn merge -c 1221533 --ignore-ancestry ../../trunk/ git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1221534 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc6328635b
commit
57ec186751
|
@ -297,6 +297,9 @@ Release 0.23.1 - Unreleased
|
||||||
MAPREDUCE-3339. Fixed MR AM to stop considering node blacklisting after the
|
MAPREDUCE-3339. Fixed MR AM to stop considering node blacklisting after the
|
||||||
number of nodes blacklisted crosses a threshold. (Siddharth Seth via vinodkv)
|
number of nodes blacklisted crosses a threshold. (Siddharth Seth via vinodkv)
|
||||||
|
|
||||||
|
MAPREDUCE-3588. Fixed bin/yarn which was broken by MAPREDUCE-3366 so that
|
||||||
|
yarn daemons can start. (Arun C Murthy via vinodkv)
|
||||||
|
|
||||||
Release 0.23.0 - 2011-11-01
|
Release 0.23.0 - 2011-11-01
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -141,6 +141,8 @@ if [ -d "$YARN_HOME/build/tools" ]; then
|
||||||
CLASSPATH=${CLASSPATH}:$YARN_HOME/build/tools
|
CLASSPATH=${CLASSPATH}:$YARN_HOME/build/tools
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
CLASSPATH=${CLASSPATH}:$YARN_HOME/share/hadoop/mapreduce/*
|
||||||
|
CLASSPATH=${CLASSPATH}:$YARN_HOME/share/hadoop/mapreduce/lib/*
|
||||||
|
|
||||||
# so that filenames w/ spaces are handled correctly in loops below
|
# so that filenames w/ spaces are handled correctly in loops below
|
||||||
IFS=
|
IFS=
|
||||||
|
|
Loading…
Reference in New Issue