YARN-8054. Improve robustness of the LocalDirsHandlerService MonitoringTimerTask thread. Contributed by Jonathan Eagles
(cherry picked from commit 5aa7052e31
)
This commit is contained in:
parent
a253925862
commit
13f74a3601
|
@ -166,7 +166,12 @@ public class LocalDirsHandlerService extends AbstractService {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
checkDirs();
|
try {
|
||||||
|
checkDirs();
|
||||||
|
} catch (Throwable t) {
|
||||||
|
// Prevent uncaught exceptions from killing this thread
|
||||||
|
LOG.warn("Error while checking local directories: ", t);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue