MAPREDUCE-6574. MR AM should print host of failed tasks. (Mohammad Shahid Khan via wangda)
(cherry picked from commit 32b3dc11eb
)
This commit is contained in:
parent
c664062fb3
commit
ca575e6add
|
@ -157,6 +157,9 @@ Release 2.8.0 - UNRELEASED
|
|||
MAPREDUCE-6566. Add retry support to mapreduce CLI tool.
|
||||
(Varun Vasudev via xgong)
|
||||
|
||||
MAPREDUCE-6574. MR AM should print host of failed tasks.
|
||||
(Mohammad Shahid Khan via wangda)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
MAPREDUCE-6376. Add avro binary support for jhist files (Ray Chiang via
|
||||
|
|
|
@ -1214,9 +1214,16 @@ public abstract class TaskAttemptImpl implements
|
|||
JobEventType.INTERNAL_ERROR));
|
||||
}
|
||||
if (oldState != getInternalState()) {
|
||||
LOG.info(attemptId + " TaskAttempt Transitioned from "
|
||||
+ oldState + " to "
|
||||
+ getInternalState());
|
||||
if (getInternalState() == TaskAttemptStateInternal.FAILED) {
|
||||
String nodeId = null == this.container ? "Not-assigned"
|
||||
: this.container.getNodeId().toString();
|
||||
LOG.info(attemptId + " transitioned from state " + oldState + " to "
|
||||
+ getInternalState() + ", event type is " + event.getType()
|
||||
+ " and nodeId=" + nodeId);
|
||||
} else {
|
||||
LOG.info(attemptId + " TaskAttempt Transitioned from " + oldState
|
||||
+ " to " + getInternalState());
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
writeLock.unlock();
|
||||
|
|
Loading…
Reference in New Issue