summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronniesahlberg@gmail.com>2012-05-25 12:31:11 +1000
committerRonnie Sahlberg <ronniesahlberg@gmail.com>2012-05-25 12:34:14 +1000
commitbbd33d6394fd7df41de83d2ae80c4b8148615332 (patch)
tree1b98ae84bdd61e95398f3e2ce52258ead69e4091
parente7d21834ae3b514210ced5f71de5d8fb4ae74b95 (diff)
RECOVERY: Increase the time we allow before timing out recovery related tasks.
If the system is temporarily taking unusually long to perform these tasks it is better to wait a lot longer and allow the tasks to complete than timing out repeatedly and then becomming banned. (This used to be ctdb commit 03fa2a517247eb2adfba67248e2466f17ea14418)
-rw-r--r--ctdb/server/ctdb_tunables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/server/ctdb_tunables.c b/ctdb/server/ctdb_tunables.c
index 83c8e52c17..57dd1f322e 100644
--- a/ctdb/server/ctdb_tunables.c
+++ b/ctdb/server/ctdb_tunables.c
@@ -31,7 +31,7 @@ static const struct {
{ "TraverseTimeout", 20, offsetof(struct ctdb_tunable, traverse_timeout), false },
{ "KeepaliveInterval", 5, offsetof(struct ctdb_tunable, keepalive_interval), false },
{ "KeepaliveLimit", 5, offsetof(struct ctdb_tunable, keepalive_limit), false },
- { "RecoverTimeout", 20, offsetof(struct ctdb_tunable, recover_timeout), false },
+ { "RecoverTimeout", 120, offsetof(struct ctdb_tunable, recover_timeout), false },
{ "RecoverInterval", 1, offsetof(struct ctdb_tunable, recover_interval), false },
{ "ElectionTimeout", 3, offsetof(struct ctdb_tunable, election_timeout), false },
{ "TakeoverTimeout", 9, offsetof(struct ctdb_tunable, takeover_timeout), false },