-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/52601/
-----------------------------------------------------------
Review request for Ambari, Sumit Mohanty and Sid Wagle.
Bugs: AMBARI-18545
https://issues.apache.org/jira/browse/AMBARI-18545
Repository: ambari
Description
-------
Kerberos related server-side actions should not time out in minutes as
specified in configuration. Some Kerberos-related task can potentially take a
much longer time based on number of hosts and components installed in the
cluster.
The _Create Principals_ and _Create Keytab Files_ stages need to be set to a
rather large timeout value such that
```
if server.task.timeout < X
timeout = X;
else
timeout = server.task.timeout
Where X is set to something like 10 hours.
```
10 hours seems to be a reasonable timeout value since it is not possible to
specified an unlimited amount of time give Ambari's current task processing
infrastructure.
Diffs
-----
ambari-server/src/main/java/org/apache/ambari/server/controller/KerberosHelperImpl.java
cd4a0b5
Diff: https://reviews.apache.org/r/52601/diff/
Testing
-------
# Local test results: PENDING
# Jenkins test results: PENDING
Thanks,
Robert Levas