MAPREDUCE-6497. Fix wrong value of JOB_FINISHED event in JobHistoryEventHandler. Contributed by Shinichi Yamashita.

(cherry picked from commit 195793c6f3)
This commit is contained in:
Akira Ajisaka 2015-10-01 10:22:45 +02:00
parent 46ef5aa8eb
commit e42f576232
2 changed files with 4 additions and 1 deletions

View File

@ -594,6 +594,9 @@ Release 2.6.2 - UNRELEASED
cache files so that child processes running hadoop scripts can access these
files. (Junping Du via vinodkv)
MAPREDUCE-6497. Fix wrong value of JOB_FINISHED event in
JobHistoryEventHandler. (Shinichi Yamashita via aajisaka)
Release 2.6.1 - 2015-09-23
INCOMPATIBLE CHANGES

View File

@ -826,7 +826,7 @@ public class JobHistoryEventHandler extends AbstractService
tEvent.addEventInfo("FINISHED_MAPS", jfe.getFinishedMaps());
tEvent.addEventInfo("FINISHED_REDUCES", jfe.getFinishedReduces());
tEvent.addEventInfo("MAP_COUNTERS_GROUPS",
countersToJSON(jfe.getTotalCounters()));
countersToJSON(jfe.getMapCounters()));
tEvent.addEventInfo("REDUCE_COUNTERS_GROUPS",
countersToJSON(jfe.getReduceCounters()));
tEvent.addEventInfo("TOTAL_COUNTERS_GROUPS",