Repository: ambari Updated Branches: refs/heads/branch-2.5 819dbff2f -> 7d2b6bbc0 refs/heads/trunk 43a181ab3 -> ba5cbf428
AMBARI-18786. HDP Upgrade fails when the cluster size is large (dlysnichenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/7d2b6bbc Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/7d2b6bbc Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/7d2b6bbc Branch: refs/heads/branch-2.5 Commit: 7d2b6bbc0a9fa3e7ee667be30b53b83d60f90a79 Parents: 819dbff Author: Lisnichenko Dmitro <[email protected]> Authored: Thu Nov 3 17:32:17 2016 +0200 Committer: Lisnichenko Dmitro <[email protected]> Committed: Thu Nov 3 17:32:17 2016 +0200 ---------------------------------------------------------------------- .../HDFS/2.1.0.2.0/package/scripts/hdfs_namenode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/7d2b6bbc/ambari-server/src/main/resources/common-services/HDFS/2.1.0.2.0/package/scripts/hdfs_namenode.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/HDFS/2.1.0.2.0/package/scripts/hdfs_namenode.py b/ambari-server/src/main/resources/common-services/HDFS/2.1.0.2.0/package/scripts/hdfs_namenode.py index db52ee1..b7735f4 100644 --- a/ambari-server/src/main/resources/common-services/HDFS/2.1.0.2.0/package/scripts/hdfs_namenode.py +++ b/ambari-server/src/main/resources/common-services/HDFS/2.1.0.2.0/package/scripts/hdfs_namenode.py @@ -510,7 +510,7 @@ def is_namenode_bootstrapped(params): return marked -@retry(times=5, sleep_time=5, backoff_factor=2, err_class=Fail) +@retry(times=125, sleep_time=5, backoff_factor=2, err_class=Fail) def is_this_namenode_active(): """ Gets whether the current NameNode is Active. This function will wait until the NameNode is
