Skip to content

Commit 9a9587b

Browse files
committed
rabbit: raise failure-timeout
The failure timeout of 30s is far too low. Essentially it means that a failed node is considered ready after 30s. Given that any start or stop operation takes considerably more than 30s. We should only expire failures after around 30 minutes to prevent flapping services.
1 parent f933d9e commit 9a9587b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chef/cookbooks/rabbitmq/recipes/ha_cluster.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
op node[:rabbitmq][:ha][:clustered_op]
123123
meta ({
124124
"migration-threshold" => "10",
125-
"failure-timeout" => "30s",
125+
"failure-timeout" => "1800s",
126126
"resource-stickiness" => "100"
127127
})
128128
action :update

0 commit comments

Comments
 (0)