Skip to content

Commit ed3a832

Browse files
committed
HADOOP-9127. Update documentation for ZooKeeper Failover Controller. Contributed by Daisuke Kobayashi.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1421592 13f79535-47bb-0310-9956-ffa450edef68
1 parent 1bc21a1 commit ed3a832

File tree

2 files changed

+69
-0
lines changed

2 files changed

+69
-0
lines changed

hadoop-common-project/hadoop-common/CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,9 @@ Release 2.0.3-alpha - Unreleased
401401
HADOOP-9042. Add a test for umask in FileSystemContractBaseTest.
402402
(Colin McCabe via eli)
403403

404+
HADOOP-9127. Update documentation for ZooKeeper Failover Controller.
405+
(Daisuke Kobayashi via atm)
406+
404407
OPTIMIZATIONS
405408

406409
HADOOP-8866. SampleQuantiles#query is O(N^2) instead of O(N). (Andrew Wang

hadoop-common-project/hadoop-common/src/main/resources/core-default.xml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1090,4 +1090,70 @@
10901090
</description>
10911091
</property>
10921092

1093+
<!-- ha properties -->
1094+
1095+
<property>
1096+
<name>ha.health-monitor.connect-retry-interval.ms</name>
1097+
<value>1000</value>
1098+
<description>
1099+
How often to retry connecting to the service.
1100+
</description>
1101+
</property>
1102+
1103+
<property>
1104+
<name>ha.health-monitor.check-interval.ms</name>
1105+
<value>1000</value>
1106+
<description>
1107+
How often to check the service.
1108+
</description>
1109+
</property>
1110+
1111+
<property>
1112+
<name>ha.health-monitor.sleep-after-disconnect.ms</name>
1113+
<value>1000</value>
1114+
<description>
1115+
How long to sleep after an unexpected RPC error.
1116+
</description>
1117+
</property>
1118+
1119+
<property>
1120+
<name>ha.health-monitor.rpc-timeout.ms</name>
1121+
<value>45000</value>
1122+
<description>
1123+
Timeout for the actual monitorHealth() calls.
1124+
</description>
1125+
</property>
1126+
1127+
<property>
1128+
<name>ha.failover-controller.new-active.rpc-timeout.ms</name>
1129+
<value>60000</value>
1130+
<description>
1131+
Timeout that the FC waits for the new active to become active
1132+
</description>
1133+
</property>
1134+
1135+
<property>
1136+
<name>ha.failover-controller.graceful-fence.rpc-timeout.ms</name>
1137+
<value>5000</value>
1138+
<description>
1139+
Timeout that the FC waits for the old active to go to standby
1140+
</description>
1141+
</property>
1142+
1143+
<property>
1144+
<name>ha.failover-controller.graceful-fence.connection.retries</name>
1145+
<value>1</value>
1146+
<description>
1147+
FC connection retries for graceful fencing
1148+
</description>
1149+
</property>
1150+
1151+
<property>
1152+
<name>ha.failover-controller.cli-check.rpc-timeout.ms</name>
1153+
<value>20000</value>
1154+
<description>
1155+
Timeout that the CLI (manual) FC waits for monitorHealth, getServiceState
1156+
</description>
1157+
</property>
1158+
10931159
</configuration>

0 commit comments

Comments
 (0)