HADOOP-11958. MetricsSystemImpl fails to show backtrace when an error occurs (Jason Lowe via jeagles)
This commit is contained in:
parent
2df00d53d1
commit
2236b577a3
@ -654,6 +654,8 @@ Release 2.8.0 - UNRELEASED
|
|||||||
HADOOP-7139. Allow appending to existing SequenceFiles
|
HADOOP-7139. Allow appending to existing SequenceFiles
|
||||||
(kanaka kumar avvaru via vinayakumarb)
|
(kanaka kumar avvaru via vinayakumarb)
|
||||||
|
|
||||||
|
HADOOP-11958. MetricsSystemImpl fails to show backtrace when an error
|
||||||
|
occurs (Jason Lowe via jeagles)
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-11785. Reduce the number of listStatus operation in distcp
|
HADOOP-11785. Reduce the number of listStatus operation in distcp
|
||||||
|
@ -367,7 +367,7 @@ public void run() {
|
|||||||
try {
|
try {
|
||||||
onTimerEvent();
|
onTimerEvent();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOG.warn(e);
|
LOG.warn("Error invoking metrics timer", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, millis, millis);
|
}, millis, millis);
|
||||||
|
Loading…
Reference in New Issue
Block a user