Skip to content

Commit

Permalink
Bug fix: Delay computation of MR application (linkedin#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
arpang authored and akshayrai committed Feb 23, 2018
1 parent b2c24b8 commit 8ea2850
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void aggregate(HadoopApplicationData hadoopData) {
//overwrite reduceTaskSlowStartPercentage to 100%. TODO: make use of the slow start percent
reduceTaskSlowStartPercentage = 100;

mapTasks = new TaskLevelAggregatedMetrics(data.getMapperData(), mapTaskContainerSize, data.getStartTime());
mapTasks = new TaskLevelAggregatedMetrics(data.getMapperData(), mapTaskContainerSize, data.getSubmitTime());

long reduceIdealStartTime = mapTasks.getNthPercentileFinishTime(reduceTaskSlowStartPercentage);

Expand Down

0 comments on commit 8ea2850

Please sign in to comment.