MAPREDUCE-3020. Fixed TaskAttemptImpl to log the correct node-address for a finished Reduce task. (Chackaravarthy via vinodkv)
svn merge -c r1181793 --ignore-ancestry ../../trunk/ git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1181794 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
343fc18c7b
commit
af72e41ee1
|
@ -1531,11 +1531,14 @@ Release 0.23.0 - Unreleased
|
||||||
job submission files to fail fast. (Abhijit Suresh Shingate via acmurthy)
|
job submission files to fail fast. (Abhijit Suresh Shingate via acmurthy)
|
||||||
|
|
||||||
MAPREDUCE-3158. Fix test failures in MRv1 due to default framework being
|
MAPREDUCE-3158. Fix test failures in MRv1 due to default framework being
|
||||||
set to yarn. (Hitesh Shah)
|
set to yarn. (Hitesh Shah via acmurhty)
|
||||||
|
|
||||||
MAPREDUCE-3167. container-executor is not being packaged with the assembly
|
MAPREDUCE-3167. container-executor is not being packaged with the assembly
|
||||||
target. (mahadev)
|
target. (mahadev)
|
||||||
|
|
||||||
|
MAPREDUCE-3020. Fixed TaskAttemptImpl to log the correct node-address for
|
||||||
|
a finished Reduce task. (Chackaravarthy via vinodkv)
|
||||||
|
|
||||||
Release 0.22.0 - Unreleased
|
Release 0.22.0 - Unreleased
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -1242,7 +1242,7 @@ public abstract class TaskAttemptImpl implements
|
||||||
state.toString(),
|
state.toString(),
|
||||||
this.reportedStatus.shuffleFinishTime,
|
this.reportedStatus.shuffleFinishTime,
|
||||||
this.reportedStatus.sortFinishTime,
|
this.reportedStatus.sortFinishTime,
|
||||||
finishTime, this.containerMgrAddress == null ? "UNKNOWN" : this.containerMgrAddress,
|
finishTime, this.nodeHostName == null ? "UNKNOWN" : this.nodeHostName,
|
||||||
this.reportedStatus.stateString,
|
this.reportedStatus.stateString,
|
||||||
TypeConverter.fromYarn(getCounters()),
|
TypeConverter.fromYarn(getCounters()),
|
||||||
getProgressSplitBlock().burst());
|
getProgressSplitBlock().burst());
|
||||||
|
|
Loading…
Reference in New Issue