Skip to content

Commit b11d853

Browse files
Merge commit '228cbf9776'
2 parents 983b4d3 + 228cbf9 commit b11d853

File tree

8 files changed

+44
-10
lines changed

8 files changed

+44
-10
lines changed

deps/rabbit/docs/rabbitmq.conf.example

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,17 @@
384384
## properties that may conflict or significantly change queue behavior and semantics, such as the 'exclusive' field.
385385
# quorum_queue.property_equivalence.relaxed_checks_on_redeclaration = true
386386

387+
## Sets the initial quorum queue replica count for newly declared quorum queues.
388+
## This value can be overridden using the 'x-quorum-initial-group-size' queue argument
389+
## at declaration time.
390+
# quorum_queue.initial_cluster_size = 3
391+
392+
## Sets the maximum number of unconfirmed messages a channel can send
393+
## before publisher flow control is triggered.
394+
## The current default is configured to provide good performance and stability
395+
## when there are multiple publishers sending to the same quorum queue.
396+
# quorum_queue.commands_soft_limit = 32
397+
387398
## Changes classic queue storage implementation version.
388399
## In 4.0.x, version 2 is the default and this is a forward compatibility setting,
389400
## that is, it will be useful when a new version is developed.

deps/rabbit/priv/schema/rabbit.schema

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2610,6 +2610,15 @@ end}.
26102610
{mapping, "quorum_queue.property_equivalence.relaxed_checks_on_redeclaration", "rabbit.quorum_relaxed_checks_on_redeclaration", [
26112611
{datatype, {enum, [true, false]}}]}.
26122612

2613+
{mapping, "quorum_queue.initial_cluster_size", "rabbit.quorum_cluster_size", [
2614+
{datatype, integer},
2615+
{validators, ["non_zero_positive_integer"]}
2616+
]}.
2617+
2618+
{mapping, "quorum_queue.commands_soft_limit", "rabbit.quorum_commands_soft_limit", [
2619+
{datatype, integer},
2620+
{validators, ["non_zero_positive_integer"]}
2621+
]}.
26132622

26142623
%%
26152624
%% Quorum Queue membership reconciliation

deps/rabbit/test/amqp_jms_SUITE_data/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<name>rabbitmq-amqp-jms-tests</name>
99
<url>https://www.rabbitmq.com</url>
1010
<properties>
11-
<junit.jupiter.version>5.12.1</junit.jupiter.version>
11+
<junit.jupiter.version>5.12.2</junit.jupiter.version>
1212
<assertj.version>3.27.3</assertj.version>
1313
<qpid-jms-client.version>2.7.0</qpid-jms-client.version>
1414
<amqp-client.version>[0.6.0-SNAPSHOT,)</amqp-client.version>
1515
<logback.version>1.5.18</logback.version>
16-
<spotless.version>2.44.3</spotless.version>
16+
<spotless.version>2.44.4</spotless.version>
1717
<google-java-format.version>1.26.0</google-java-format.version>
1818
<maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version>
1919
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>

deps/rabbit/test/config_schema_SUITE_data/rabbit.snippets

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,6 +1067,20 @@ credential_validator.regexp = ^abc\\d+",
10671067
]}],
10681068
[]},
10691069

1070+
{quorum_queue_initial_cluster_size,
1071+
"quorum_queue.initial_cluster_size = 3",
1072+
[{rabbit, [
1073+
{quorum_cluster_size, 3}
1074+
]}],
1075+
[]},
1076+
1077+
{quorum_queue_commands_soft_limit,
1078+
"quorum_queue.commands_soft_limit = 32",
1079+
[{rabbit, [
1080+
{quorum_commands_soft_limit, 32}
1081+
]}],
1082+
[]},
1083+
10701084
%%
10711085
%% Runtime parameters
10721086
%%

deps/rabbitmq_auth_backend_http/examples/rabbitmq_auth_backend_spring_boot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<properties>
3636
<maven.compiler.source>17</maven.compiler.source>
3737
<maven.compiler.target>17</maven.compiler.target>
38-
<junit.jupiter.version>5.12.1</junit.jupiter.version>
38+
<junit.jupiter.version>5.12.2</junit.jupiter.version>
3939
</properties>
4040

4141
<groupId>com.rabbitmq.examples</groupId>

deps/rabbitmq_mqtt/test/java_SUITE_data/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
<paho.v5.version>[1.2.5,)</paho.v5.version>
1717
<paho.v3.version>[1.2.5,)</paho.v3.version>
1818
<amqp-client.version>5.25.0</amqp-client.version>
19-
<junit.version>5.12.1</junit.version>
19+
<junit.version>5.12.2</junit.version>
2020
<assertj.version>3.27.3</assertj.version>
2121
<logback.version>1.2.13</logback.version>
2222
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>
2323
<groovy-maven-plugin.version>2.1.1</groovy-maven-plugin.version>
2424
<groovy.version>2.4.21</groovy.version>
2525
<maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version>
26-
<spotless.version>2.44.3</spotless.version>
26+
<spotless.version>2.44.4</spotless.version>
2727
<google-java-format.version>1.17.0</google-java-format.version>
2828
<test-keystore.ca>${project.build.directory}/ca.keystore</test-keystore.ca>
2929
<test-keystore.password>bunnychow</test-keystore.password>

deps/rabbitmq_stream/test/rabbit_stream_SUITE_data/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727

2828
<properties>
2929
<stream-client.version>[0.12.0-SNAPSHOT,)</stream-client.version>
30-
<junit.jupiter.version>5.12.1</junit.jupiter.version>
30+
<junit.jupiter.version>5.12.2</junit.jupiter.version>
3131
<assertj.version>3.27.3</assertj.version>
3232
<logback.version>1.2.13</logback.version>
3333
<maven.compiler.plugin.version>3.14.0</maven.compiler.plugin.version>
3434
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>
35-
<spotless.version>2.44.3</spotless.version>
35+
<spotless.version>2.44.4</spotless.version>
3636
<google-java-format.version>1.17.0</google-java-format.version>
3737
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3838
</properties>

deps/rabbitmq_stream_management/test/http_SUITE_data/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727

2828
<properties>
2929
<stream-client.version>[0.12.0-SNAPSHOT,)</stream-client.version>
30-
<junit.jupiter.version>5.12.1</junit.jupiter.version>
30+
<junit.jupiter.version>5.12.2</junit.jupiter.version>
3131
<assertj.version>3.27.3</assertj.version>
3232
<logback.version>1.2.13</logback.version>
3333
<maven.compiler.plugin.version>3.14.0</maven.compiler.plugin.version>
3434
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>
35-
<spotless.version>2.44.3</spotless.version>
35+
<spotless.version>2.44.4</spotless.version>
3636
<google-java-format.version>1.18.1</google-java-format.version>
3737
<okhttp.version>4.12.0</okhttp.version>
38-
<gson.version>2.12.1</gson.version>
38+
<gson.version>2.13.0</gson.version>
3939
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4040
</properties>
4141

0 commit comments

Comments
 (0)