Yoga Series Release Notes¶
12.13.1¶
Upgrade Notes¶
If kombu_reconnect_delay is specified in the [oslo_messaging_rabbit] section, ensure that it is less than 5.0, the value of ACK_REQUEUE_EVERY_SECONDS_MAX
Bug Fixes¶
Increased ACK_REQUEUE_EVERY_SECONDS_MAX to resolve issues with rabbitmq HA failover.
12.13.0¶
New Features¶
Adding support for quorum queues. Quorum queues are enabled if the
rabbit_quorum_queue
parameter is sets (x-queue-type: quorum
). Setting x-queue-type to quorum means that replicated FIFO queue based on the Raft consensus algorithm will be used. It is available as of RabbitMQ 3.8.0. The quorum queues are durable by default (amqp_durable_queues
) will be ignored. when enabled the HA queues (rabbit_ha_queues
) aka mirrored queues should be disabled since the queue can’t be both types at the same time
12.12.0¶
Bug Fixes¶
As a fix for bug 1917645 the rabbit backend is changed to use the
[oslo_messaging_notifications]retry
parameter when driver tries to connect to the message bus during notification sending. Before this fix the rabbit backend retried the connection forever blocking the caller thread.
12.11.0¶
Upgrade Notes¶
We undeprecated the
heartbeat_in_pthread
option. This option will remain available to allow customers to run the rabbitmq heartbeat in python thread or not.