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

@ -1133,8 +1133,11 @@ public class Client {
return false;
}
if (System.currentTimeMillis() > (clientStartTime + clientTimeout)) {
LOG.info("Reached client specified timeout for application. Killing application");
// 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;
}