Skip to content

Commit fd44520

Browse files
Add a few more missing keys to rabbitmq.conf.example
1 parent 473f02e commit fd44520

File tree

1 file changed

+50
-2
lines changed

1 file changed

+50
-2
lines changed

deps/rabbit/docs/rabbitmq.conf.example

Lines changed: 50 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,11 +414,33 @@
414414
##
415415
# initial_frame_max = 4096
416416

417-
## Set the max permissible number of channels per connection.
417+
## Set the max permissible number of channels per AMQP 0-9-1 connection.
418418
## 0 means "no limit".
419419
##
420420
# channel_max = 128
421421

422+
## Set the max permissible number of channels across all AMQP 0-9-1 connections on the node.
423+
##
424+
# channel_max_per_node = 2000
425+
426+
## Set the max allowed number of consumers per AMQP 0-9-1 channel.
427+
##
428+
# consumer_max_per_channel = 100
429+
430+
## Set the max permissible number of client connections on the node.
431+
##
432+
# connection_max = 5000
433+
434+
## Sets the maximum number of AMQP 1.0 sessions that can be simultaneously
435+
## active on an AMQP 1.0 connection.
436+
##
437+
# session_max_per_connection = 32
438+
439+
## Sets the maximum number of AMQP 1.0 links that can be simultaneously
440+
## active on an AMQP 1.0 session.
441+
##
442+
# link_max_per_session = 32
443+
422444
## Customising TCP Listener (Socket) Configuration.
423445
##
424446
## Relevant doc guides:
@@ -442,6 +464,12 @@
442464
## Queues
443465
##
444466

467+
## Configures a node-wide fallback for the default queue type.
468+
##
469+
## Relevant doc guide: https://www.rabbitmq.com/docs/vhosts#default-queue-type
470+
##
471+
# default_queue_type = quorum
472+
445473
## If set, the 'x-queue-type' header will be ignored (not compared for equivalence)
446474
## for queue redeclaration. This can simplify upgrades of applications that explicitly
447475
## set 'x-queue-type' to 'classic' for historical reasons but do not set any other
@@ -460,7 +488,7 @@
460488
# quorum_queue.commands_soft_limit = 32
461489

462490
## Changes classic queue storage implementation version.
463-
## In 4.0.x, version 2 is the default and this is a forward compatibility setting,
491+
## As of 4.0.0, version 2 is the default and this is a forward compatibility setting,
464492
## that is, it will be useful when a new version is developed.
465493
##
466494
# classic_queue.default_version = 2
@@ -593,6 +621,26 @@
593621
## Values lower than 1.0 can be dangerous and should be used carefully.
594622
# disk_free_limit.relative = 2.0
595623

624+
## Maximum number of virtual hosts in the cluster.
625+
##
626+
# vhost_max = 100
627+
628+
## Maximum number of queues and streams in the cluster.
629+
##
630+
# cluster_queue_limit = 10000
631+
632+
## Maximum number of exchanges in the cluster.
633+
##
634+
# cluster_exchange_limit = 5000
635+
636+
## Maximum message size in bytes. Messages larger than this
637+
## will be rejected.
638+
##
639+
## Default is 16 MiB.
640+
##
641+
## Sets maximum message size to 16 MiB
642+
# max_message_size = 16777216
643+
596644
##
597645
## Clustering
598646
##

0 commit comments

Comments
 (0)