MAPREDUCE-3269. Fixed log4j properties to correctly set logging options for JobHistoryServer vis-a-vis JobSummary logs. Contributed by Mahadev Konar.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1188999 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7dcef364a9
commit
03659985a0
|
@ -1770,6 +1770,9 @@ Release 0.23.0 - Unreleased
|
||||||
MAPREDUCE-3263. Fixed the MAPREDUCE-3028 commit which broke MR1. (Hitesh
|
MAPREDUCE-3263. Fixed the MAPREDUCE-3028 commit which broke MR1. (Hitesh
|
||||||
Shah via acmurthy)
|
Shah via acmurthy)
|
||||||
|
|
||||||
|
MAPREDUCE-3269. Fixed log4j properties to correctly set logging options
|
||||||
|
for JobHistoryServer vis-a-vis JobSummary logs. (mahadev via acmurthy)
|
||||||
|
|
||||||
Release 0.22.0 - Unreleased
|
Release 0.22.0 - Unreleased
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -176,6 +176,8 @@ if [ "$YARN_LOGFILE" = "" ]; then
|
||||||
YARN_LOGFILE='yarn.log'
|
YARN_LOGFILE='yarn.log'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
YARN_JOB_HISTORYSERVER_OPTS="-Dmapred.jobsummary.logger=${YARN_JHS_LOGGER:-INFO,console}"
|
||||||
|
|
||||||
# restore ordinary behaviour
|
# restore ordinary behaviour
|
||||||
unset IFS
|
unset IFS
|
||||||
|
|
||||||
|
|
|
@ -86,6 +86,7 @@ fi
|
||||||
# some variables
|
# some variables
|
||||||
export YARN_LOGFILE=yarn-$YARN_IDENT_STRING-$command-$HOSTNAME.log
|
export YARN_LOGFILE=yarn-$YARN_IDENT_STRING-$command-$HOSTNAME.log
|
||||||
export YARN_ROOT_LOGGER="INFO,DRFA"
|
export YARN_ROOT_LOGGER="INFO,DRFA"
|
||||||
|
export YARN_JHS_LOGGER="INFO,JSA"
|
||||||
log=$YARN_LOG_DIR/yarn-$YARN_IDENT_STRING-$command-$HOSTNAME.out
|
log=$YARN_LOG_DIR/yarn-$YARN_IDENT_STRING-$command-$HOSTNAME.out
|
||||||
pid=$YARN_PID_DIR/yarn-$YARN_IDENT_STRING-$command.pid
|
pid=$YARN_PID_DIR/yarn-$YARN_IDENT_STRING-$command.pid
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue