Naming, docs #13747

This commit is contained in:
Michael Klishin 2025-04-14 08:38:03 -04:00
parent e557ab37a3
commit 228cbf9776
No known key found for this signature in database
GPG Key ID: 44BF2725475205B2
3 changed files with 8 additions and 7 deletions

View File

@ -384,9 +384,10 @@
## properties that may conflict or significantly change queue behavior and semantics, such as the 'exclusive' field. ## properties that may conflict or significantly change queue behavior and semantics, such as the 'exclusive' field.
# quorum_queue.property_equivalence.relaxed_checks_on_redeclaration = true # quorum_queue.property_equivalence.relaxed_checks_on_redeclaration = true
## Sets the initial quorum queue cluster size for newly declared quorum queues. ## Sets the initial quorum queue replica count for newly declared quorum queues.
## This value will be overridden if the 'x-quorum-initial-group-size' queue argument is provided. ## This value can be overridden using the 'x-quorum-initial-group-size' queue argument
# quorum_queue.cluster_size = 3 ## at declaration time.
# quorum_queue.initial_cluster_size = 3
## Sets the maximum number of unconfirmed messages a channel can send ## Sets the maximum number of unconfirmed messages a channel can send
## before publisher flow control is triggered. ## before publisher flow control is triggered.

View File

@ -2610,7 +2610,7 @@ end}.
{mapping, "quorum_queue.property_equivalence.relaxed_checks_on_redeclaration", "rabbit.quorum_relaxed_checks_on_redeclaration", [ {mapping, "quorum_queue.property_equivalence.relaxed_checks_on_redeclaration", "rabbit.quorum_relaxed_checks_on_redeclaration", [
{datatype, {enum, [true, false]}}]}. {datatype, {enum, [true, false]}}]}.
{mapping, "quorum_queue.cluster_size", "rabbit.quorum_cluster_size", [ {mapping, "quorum_queue.initial_cluster_size", "rabbit.quorum_cluster_size", [
{datatype, integer}, {datatype, integer},
{validators, ["non_zero_positive_integer"]} {validators, ["non_zero_positive_integer"]}
]}. ]}.

View File

@ -1067,14 +1067,14 @@ credential_validator.regexp = ^abc\\d+",
]}], ]}],
[]}, []},
{quorum_cluster_size, {quorum_queue_initial_cluster_size,
"quorum_queue.cluster_size = 3", "quorum_queue.initial_cluster_size = 3",
[{rabbit, [ [{rabbit, [
{quorum_cluster_size, 3} {quorum_cluster_size, 3}
]}], ]}],
[]}, []},
{quorum_commands_soft_limit, {quorum_queue_commands_soft_limit,
"quorum_queue.commands_soft_limit = 32", "quorum_queue.commands_soft_limit = 32",
[{rabbit, [ [{rabbit, [
{quorum_commands_soft_limit, 32} {quorum_commands_soft_limit, 32}