MAPREDUCE-7426. Fix typo in StartEndTimeBase (#4894)
Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
parent
c096803387
commit
e04c9e810b
@ -61,7 +61,7 @@ abstract class StartEndTimesBase implements TaskRuntimeEstimator {
|
|||||||
= new HashMap<Job, DataStatistics>();
|
= new HashMap<Job, DataStatistics>();
|
||||||
|
|
||||||
|
|
||||||
private final Map<Job, Float> slowTaskRelativeTresholds
|
private final Map<Job, Float> slowTaskRelativeThresholds
|
||||||
= new HashMap<Job, Float>();
|
= new HashMap<Job, Float>();
|
||||||
|
|
||||||
protected final Set<Task> doneTasks = new HashSet<Task>();
|
protected final Set<Task> doneTasks = new HashSet<Task>();
|
||||||
@ -89,7 +89,7 @@ public void contextualize(Configuration conf, AppContext context) {
|
|||||||
final Job job = entry.getValue();
|
final Job job = entry.getValue();
|
||||||
mapperStatistics.put(job, new DataStatistics());
|
mapperStatistics.put(job, new DataStatistics());
|
||||||
reducerStatistics.put(job, new DataStatistics());
|
reducerStatistics.put(job, new DataStatistics());
|
||||||
slowTaskRelativeTresholds.put
|
slowTaskRelativeThresholds.put
|
||||||
(job, conf.getFloat(MRJobConfig.SPECULATIVE_SLOWTASK_THRESHOLD,1.0f));
|
(job, conf.getFloat(MRJobConfig.SPECULATIVE_SLOWTASK_THRESHOLD,1.0f));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -141,7 +141,7 @@ public long thresholdRuntime(TaskId taskID) {
|
|||||||
|
|
||||||
long result = statistics == null
|
long result = statistics == null
|
||||||
? Long.MAX_VALUE
|
? Long.MAX_VALUE
|
||||||
: (long)statistics.outlier(slowTaskRelativeTresholds.get(job));
|
: (long)statistics.outlier(slowTaskRelativeThresholds.get(job));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user