YARN-9168. DistributedShell client timeout should be -1 by default. Contributed by Zhankun Tang.

This commit is contained in:
Sunil G 2019-02-25 15:28:45 +05:30
parent a5eb7ce651
commit 6cec90653d
1 changed files with 10 additions and 7 deletions

View File

@ -1131,14 +1131,17 @@ else if (YarnApplicationState.KILLED == state
+ " YarnState=" + state.toString() + ", DSFinalStatus=" + dsStatus.toString()
+ ". Breaking monitoring loop");
return false;
}
if (System.currentTimeMillis() > (clientStartTime + clientTimeout)) {
LOG.info("Reached client specified timeout for application. Killing application");
forceKillApplication(appId);
return false;
}
}
// The value equal or less than 0 means no timeout
if (clientTimeout > 0
&& System.currentTimeMillis() > (clientStartTime + clientTimeout)) {
LOG.info("Reached client specified timeout for application. " +
"Killing application");
forceKillApplication(appId);
return false;
}
}
}