|
414 | 414 | ## |
415 | 415 | # initial_frame_max = 4096 |
416 | 416 |
|
417 | | -## Set the max permissible number of channels per connection. |
| 417 | +## Set the max permissible number of channels per AMQP 0-9-1 connection. |
418 | 418 | ## 0 means "no limit". |
419 | 419 | ## |
420 | 420 | # channel_max = 128 |
421 | 421 |
|
| 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 | + |
422 | 444 | ## Customising TCP Listener (Socket) Configuration. |
423 | 445 | ## |
424 | 446 | ## Relevant doc guides: |
|
442 | 464 | ## Queues |
443 | 465 | ## |
444 | 466 |
|
| 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 | + |
445 | 473 | ## If set, the 'x-queue-type' header will be ignored (not compared for equivalence) |
446 | 474 | ## for queue redeclaration. This can simplify upgrades of applications that explicitly |
447 | 475 | ## set 'x-queue-type' to 'classic' for historical reasons but do not set any other |
|
460 | 488 | # quorum_queue.commands_soft_limit = 32 |
461 | 489 |
|
462 | 490 | ## 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, |
464 | 492 | ## that is, it will be useful when a new version is developed. |
465 | 493 | ## |
466 | 494 | # classic_queue.default_version = 2 |
|
593 | 621 | ## Values lower than 1.0 can be dangerous and should be used carefully. |
594 | 622 | # disk_free_limit.relative = 2.0 |
595 | 623 |
|
| 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 | + |
596 | 644 | ## |
597 | 645 | ## Clustering |
598 | 646 | ## |
|
0 commit comments