MAPREDUCE-6816. Progress bars in Web UI always at 100%. Contributed by Shen Yinjie.
(cherry picked from commitda4ecc9f82
) (cherry picked from commit03854f0bc5
)
This commit is contained in:
parent
ac9801fec8
commit
460fe6594a
|
@ -125,7 +125,7 @@ public class TaskPage extends AppView {
|
|||
|
||||
for (TaskAttempt attempt : getTaskAttempts()) {
|
||||
TaskAttemptInfo ta = new TaskAttemptInfo(attempt, true);
|
||||
String progress = StringUtils.formatPercent(ta.getProgress() / 100, 2);
|
||||
String progress = StringUtils.format("%.2f", ta.getProgress());
|
||||
|
||||
String nodeHttpAddr = ta.getNode();
|
||||
String diag = ta.getNote() == null ? "" : ta.getNote();
|
||||
|
|
|
@ -94,7 +94,7 @@ public class TasksBlock extends HtmlBlock {
|
|||
|
||||
TaskInfo info = new TaskInfo(task);
|
||||
String tid = info.getId();
|
||||
String pct = StringUtils.formatPercent(info.getProgress() / 100, 2);
|
||||
String pct = StringUtils.format("%.2f", info.getProgress());
|
||||
tasksTableData.append("[\"<a href='").append(url("task", tid))
|
||||
.append("'>").append(tid).append("</a>\",\"")
|
||||
//Progress bar
|
||||
|
|
|
@ -104,12 +104,12 @@ public class JobInfo {
|
|||
this.mapsCompleted = job.getCompletedMaps();
|
||||
this.mapProgress = report.getMapProgress() * 100;
|
||||
this.mapProgressPercent =
|
||||
StringUtils.formatPercent(report.getMapProgress(), 2);
|
||||
StringUtils.format("%.2f", getMapProgress());
|
||||
this.reducesTotal = job.getTotalReduces();
|
||||
this.reducesCompleted = job.getCompletedReduces();
|
||||
this.reduceProgress = report.getReduceProgress() * 100;
|
||||
this.reduceProgressPercent =
|
||||
StringUtils.formatPercent(report.getReduceProgress(), 2);
|
||||
StringUtils.format("%.2f", getReduceProgress());
|
||||
|
||||
this.acls = new ArrayList<ConfEntryInfo>();
|
||||
if (hasAccess) {
|
||||
|
|
Loading…
Reference in New Issue