YARN-8054. Improve robustness of the LocalDirsHandlerService MonitoringTimerTask thread. Contributed by Jonathan Eagles

(cherry picked from commit 5aa7052e31)
(cherry picked from commit 5d4b2c31a1)
This commit is contained in:
Jason Lowe 2018-03-21 17:19:20 -05:00 committed by Wangda Tan
parent d7d35fd4f0
commit dc075b727a
1 changed files with 6 additions and 1 deletions

View File

@ -166,7 +166,12 @@ public class LocalDirsHandlerService extends AbstractService {
@Override
public void run() {
try {
checkDirs();
} catch (Throwable t) {
// Prevent uncaught exceptions from killing this thread
LOG.warn("Error while checking local directories: ", t);
}
}
}