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 pralabhkumar committed Aug 31, 2018
1 parent e18f2fb commit 44e35dc
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 44e35dc

Please sign in to comment.