MAPREDUCE-4356. [Rumen] Provide access to the method ParsedTask.obtainTaskAttempts(). (ravigummadi)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1352415 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cf5dd32932
commit
b685486fbb
@ -60,6 +60,9 @@ Trunk (unreleased changes)
|
|||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
||||||
|
MAPREDUCE-4356. [Rumen] Provide access to the method
|
||||||
|
ParsedTask.obtainTaskAttempts(). (ravigummadi)
|
||||||
|
|
||||||
MAPREDUCE-4100. [Gridmix] Bug fixed in compression emulation feature for
|
MAPREDUCE-4100. [Gridmix] Bug fixed in compression emulation feature for
|
||||||
map only jobs. (amarrk)
|
map only jobs. (amarrk)
|
||||||
|
|
||||||
|
@ -91,7 +91,10 @@ public String obtainFailedDueToAttemptId() {
|
|||||||
return failedDueToAttempt;
|
return failedDueToAttempt;
|
||||||
}
|
}
|
||||||
|
|
||||||
List<ParsedTaskAttempt> obtainTaskAttempts() {
|
/**
|
||||||
|
* @return the list of attempts of this task.
|
||||||
|
*/
|
||||||
|
public List<ParsedTaskAttempt> obtainTaskAttempts() {
|
||||||
List<LoggedTaskAttempt> attempts = getAttempts();
|
List<LoggedTaskAttempt> attempts = getAttempts();
|
||||||
return convertTaskAttempts(attempts);
|
return convertTaskAttempts(attempts);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user