MAPREDUCE-6286. A typo in HistoryViewer makes some code useless, which causes counter limits are not reset correctly. Contributed by Zhihai Xu.
This commit is contained in:
parent
08f2f7ed34
commit
929b04ce3a
|
@ -97,6 +97,10 @@ Release 2.7.0 - UNRELEASED
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
||||||
|
MAPREDUCE-6286. A typo in HistoryViewer makes some code useless, which
|
||||||
|
causes counter limits are not reset correctly.
|
||||||
|
(Zhihai Xu via harsh)
|
||||||
|
|
||||||
MAPREDUCE-6210. Use getApplicationAttemptId() instead of getApplicationId()
|
MAPREDUCE-6210. Use getApplicationAttemptId() instead of getApplicationId()
|
||||||
for logging AttemptId in RMContainerAllocator.java (Leitao Guo via aajisaka)
|
for logging AttemptId in RMContainerAllocator.java (Leitao Guo via aajisaka)
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@ public class HistoryViewer {
|
||||||
final Configuration jobConf = new Configuration(conf);
|
final Configuration jobConf = new Configuration(conf);
|
||||||
try {
|
try {
|
||||||
jobConf.addResource(fs.open(jobConfPath), jobConfPath.toString());
|
jobConf.addResource(fs.open(jobConfPath), jobConfPath.toString());
|
||||||
Limits.reset(conf);
|
Limits.reset(jobConf);
|
||||||
} catch (FileNotFoundException fnf) {
|
} catch (FileNotFoundException fnf) {
|
||||||
if (LOG.isWarnEnabled()) {
|
if (LOG.isWarnEnabled()) {
|
||||||
LOG.warn("Missing job conf in history", fnf);
|
LOG.warn("Missing job conf in history", fnf);
|
||||||
|
|
Loading…
Reference in New Issue