Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Duplicate
-
None
-
None
-
None
-
None
Description
I printed the progress in the Progress.java for every progress made and I found this scenario
update called for reduce with progress 0.99998355 update called for reduce with progress 0.99998355 update called for reduce with progress 1.0000043 update called for reduce with progress 1.0000043 update called for reduce with progress 1.0000244
Following are the lines I added to get this
Progress.java
/** Called during execution on a leaf node to set its progress. */ public synchronized void set(float progress) { System.out.println("update called for " + status + " with progress " + progress); this.progress = progress; }
This needs investigation and will also explain why occasionally users see jobs that are complete and their progress less that 100%.
Attachments
Issue Links
- is depended upon by
-
HADOOP-3245 Provide ability to persist running jobs (extend HADOOP-1876)
-
- Closed
-
- is related to
-
MAPREDUCE-141 reduce % complete incorrect in webui
-
- Resolved
-
- relates to
-
HADOOP-5210 Reduce Task Progress shows > 100% when the total size of map outputs (for a single reducer) is high
-
- Resolved
-