Merge "Add setting to override rabbitmq tcp connection backlog"

This commit is contained in:
Zuul 2020-12-10 16:58:45 +00:00 committed by Gerrit Code Review
commit 184d29e321
2 changed files with 12 additions and 1 deletions

View File

@ -55,6 +55,10 @@ parameters:
default: 65536
description: Configures RabbitMQ FD limit
type: number
RabbitTCPBacklog:
default: 4096
description: Configures RabbitMQ maximum TCP Backlog
type: number
RabbitIPv6:
default: false
description: Enable IPv6 in RabbitMQ
@ -143,7 +147,7 @@ outputs:
rabbitmq::wipe_db_on_cookie_change: true
rabbitmq::port: 5672
rabbitmq::loopback_users: []
rabbitmq::tcp_backlog: 4096
rabbitmq::tcp_backlog: {get_param: RabbitTCPBacklog}
rabbitmq::package_provider: yum
rabbitmq::package_source: undef
rabbitmq::repos_ensure: false

View File

@ -0,0 +1,7 @@
---
other:
- |
A new parameter called ``RabbitTCPBacklog`` that specifies the maximum tcp
backlog for RabbitMQ as been added. The value defaults to 4096 to match
previous behavior and can be modified for the needs of larger scale
deployments by operators.