MAPREDUCE-6816. Progress bars in Web UI always at 100%. Contributed by Shen Yinjie.
This commit is contained in:
parent
6b4a9970f1
commit
da4ecc9f82
@ -125,7 +125,7 @@ protected void render(Block html) {
|
||||
|
||||
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 JobInfo(Job job, Boolean hasAccess) {
|
||||
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
Block a user