summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorHervé Beraud <hberaud@redhat.com>2021-09-08 08:34:13 +0200
committerhamza alqtaishat <hamalq@verizonmedia.com>2022-02-05 07:12:49 +0000
commit7e8acbf87070354cd2438f3ab0821d035c2e7d92 (patch)
tree52df2013d4a19d58389be3e141b10e8e3bb786ed /doc/source
parentf9de265f392dca5386491120593d57b124342c5f (diff)
downloadoslo-messaging-7e8acbf87070354cd2438f3ab0821d035c2e7d92.tar.gz
Adding support for rabbitmq quorum queues
https://www.rabbitmq.com/quorum-queues.html The quorum queue is a modern queue type for RabbitMQ implementing a durable, replicated FIFO queue based on the Raft consensus algorithm. It is available as of RabbitMQ 3.8.0. the quorum queues can not be set by policy so this should be done when declaring the queue. To declare a quorum queue set the x-queue-type queue argument to quorum (the default is classic). This argument must be provided by a client at queue declaration time; it cannot be set or changed using a policy. This is because policy definition or applicable policy can be changed dynamically but queue type cannot. It must be specified at the time of declaration. its good for the oslo messaging to add support for that type of queue that have multiple advantaged over mirroring. If quorum queues are sets mirrored queues will be ignored. Closes-Bug: #1942933 Change-Id: Id573e04c287e034e50626daf6e18a34735d45251
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/admin/rabbit.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/source/admin/rabbit.rst b/doc/source/admin/rabbit.rst
index 142bdf7..bf91e47 100644
--- a/doc/source/admin/rabbit.rst
+++ b/doc/source/admin/rabbit.rst
@@ -240,6 +240,7 @@ Consuming Options
^^^^^^^^^^^^^^^^^
- :oslo.config:option:`oslo_messaging_rabbit.rabbit_ha_queues`
+- :oslo.config:option:`oslo_messaging_rabbit.rabbit_quorum_queue`
- :oslo.config:option:`oslo_messaging_rabbit.rabbit_transient_queues_ttl`
Connection Options