Repository: ambari Updated Branches: refs/heads/trunk 423df9591 -> 094c56ef3
AMBARI-11192 - The Default hdfs-site.xml Should Have Client Retry Logic Enabled For Rolling Upgrade (jonathanhurley) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/094c56ef Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/094c56ef Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/094c56ef Branch: refs/heads/trunk Commit: 094c56ef31f7fb29feae928799c20893175e18c4 Parents: 423df95 Author: Jonathan Hurley <[email protected]> Authored: Sat May 16 18:39:43 2015 -0400 Committer: Jonathan Hurley <[email protected]> Committed: Sat May 16 18:44:05 2015 -0400 ---------------------------------------------------------------------- .../stacks/HDP/2.2/services/HDFS/configuration/hdfs-site.xml | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/094c56ef/ambari-server/src/main/resources/stacks/HDP/2.2/services/HDFS/configuration/hdfs-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.2/services/HDFS/configuration/hdfs-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.2/services/HDFS/configuration/hdfs-site.xml index 48ef96e..d7bd90e 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.2/services/HDFS/configuration/hdfs-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.2/services/HDFS/configuration/hdfs-site.xml @@ -33,6 +33,12 @@ <value>/hadoop/hdfs/journalnode</value> <description>The path where the JournalNode daemon will store its local state. </description> </property> + + <property> + <name>dfs.client.retry.policy.enabled</name> + <value>true</value> + <description>Enables HDFS client retry in the event of a NameNode failure.</description> + </property> <property> <name>dfs.encryption.key.provider.uri</name>
