YARN-4568. Fix message when NodeManager runs into errors initializing the recovery directory. (rchiang)

This commit is contained in:
Ray Chiang 2016-07-01 15:49:30 -07:00
parent 36cd0bce83
commit 0a5def155e
1 changed files with 8 additions and 1 deletions

View File

@ -287,7 +287,14 @@ protected void serviceInit(Configuration conf) throws Exception {
.RM_WORK_PRESERVING_RECOVERY_ENABLED, .RM_WORK_PRESERVING_RECOVERY_ENABLED,
YarnConfiguration.DEFAULT_RM_WORK_PRESERVING_RECOVERY_ENABLED); YarnConfiguration.DEFAULT_RM_WORK_PRESERVING_RECOVERY_ENABLED);
initAndStartRecoveryStore(conf); try {
initAndStartRecoveryStore(conf);
} catch (IOException e) {
String recoveryDirName = conf.get(YarnConfiguration.NM_RECOVERY_DIR);
throw new
YarnRuntimeException("Unable to initialize recovery directory at "
+ recoveryDirName, e);
}
NMContainerTokenSecretManager containerTokenSecretManager = NMContainerTokenSecretManager containerTokenSecretManager =
new NMContainerTokenSecretManager(conf, nmStore); new NMContainerTokenSecretManager(conf, nmStore);