merge MAPREDUCE-3615 from trunk
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1227742 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2d360c5514
commit
b988ba01cd
|
@ -355,6 +355,8 @@ Release 0.23.1 - Unreleased
|
||||||
MAPREDUCE-3572. Moved AM event dispatcher to a separate thread for
|
MAPREDUCE-3572. Moved AM event dispatcher to a separate thread for
|
||||||
performance reasons. (vinodkv via acmurthy)
|
performance reasons. (vinodkv via acmurthy)
|
||||||
|
|
||||||
|
MAPREDUCE-3615. Fix some ant test failures. (Thomas Graves via sseth)
|
||||||
|
|
||||||
Release 0.23.0 - 2011-11-01
|
Release 0.23.0 - 2011-11-01
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -103,7 +103,7 @@ public class TaskAttemptUnsuccessfulCompletionEvent implements HistoryEvent {
|
||||||
(TaskAttemptID id, TaskType taskType,
|
(TaskAttemptID id, TaskType taskType,
|
||||||
String status, long finishTime,
|
String status, long finishTime,
|
||||||
String hostname, String error) {
|
String hostname, String error) {
|
||||||
this(id, taskType, status, finishTime, hostname, -1, null, error, null);
|
this(id, taskType, status, finishTime, hostname, -1, "", error, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
TaskAttemptUnsuccessfulCompletionEvent() {}
|
TaskAttemptUnsuccessfulCompletionEvent() {}
|
||||||
|
|
|
@ -3210,7 +3210,7 @@ public class JobInProgress {
|
||||||
(taskid,
|
(taskid,
|
||||||
taskType, taskStatus.getRunState().toString(),
|
taskType, taskStatus.getRunState().toString(),
|
||||||
finishTime,
|
finishTime,
|
||||||
taskTrackerHostName, -1, null, diagInfo,
|
taskTrackerHostName, -1, "", diagInfo,
|
||||||
splits.burst());
|
splits.burst());
|
||||||
jobHistory.logEvent(tue, taskid.getJobID());
|
jobHistory.logEvent(tue, taskid.getJobID());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue