MAPREDUCE-5774. Job overview in History UI should list reducer phases in chronological order. (Gera Shegalov via kasha)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1593890 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Karthik Kambatla 2014-05-12 06:15:33 +00:00
parent 41344a4a69
commit 5e337149e3
2 changed files with 4 additions and 1 deletions

View File

@ -188,6 +188,9 @@ Release 2.5.0 - UNRELEASED
MAPREDUCE-5636. Convert MapReduce Tutorial document to APT (Akira AJISAKA
via jeagles)
MAPREDUCE-5774. Job overview in History UI should list reducer phases in
chronological order. (Gera Shegalov via kasha)
OPTIMIZATIONS
BUG FIXES

View File

@ -107,9 +107,9 @@ public class HsJobBlock extends HtmlBlock {
infoBlock._("Average Map Time", StringUtils.formatTime(job.getAvgMapTime()));
}
if(job.getNumReduces() > 0) {
infoBlock._("Average Reduce Time", StringUtils.formatTime(job.getAvgReduceTime()));
infoBlock._("Average Shuffle Time", StringUtils.formatTime(job.getAvgShuffleTime()));
infoBlock._("Average Merge Time", StringUtils.formatTime(job.getAvgMergeTime()));
infoBlock._("Average Reduce Time", StringUtils.formatTime(job.getAvgReduceTime()));
}
for (ConfEntryInfo entry : job.getAcls()) {