From 554b2be1d34756759277534aaed0c3a3f1685ca6 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Sat, 25 May 2024 12:45:58 +0200 Subject: [PATCH] Define unique hostname for QManager Due to the shortcoming of QManager implementation [1], in case of uWSGI usage on metal hosts, the flow ends up with having the same hostname/processname set, making services to fight over same file under SHM. In order to avoid this, we prepend the hostname with a service_name. We can not change processname instead, since it will lead to the fight between different processes of the same service. [1] https://bugs.launchpad.net/oslo.messaging/+bug/2065922 Change-Id: I0c109daeb16c5af5b33cbc89ad0419a61eba1bc6 --- templates/aodh.conf.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/aodh.conf.j2 b/templates/aodh.conf.j2 index 9568474..b49192e 100644 --- a/templates/aodh.conf.j2 +++ b/templates/aodh.conf.j2 @@ -14,6 +14,9 @@ rabbit_quorum_queue = {{ aodh_oslomsg_rabbit_quorum_queues }} rabbit_transient_quorum_queue = {{ aodh_oslomsg_rabbit_transient_quorum_queues }} rabbit_qos_prefetch_count = {{ aodh_oslomsg_rabbit_qos_prefetch_count }} use_queue_manager = {{ aodh_oslomsg_rabbit_queue_manager }} +{% if aodh_oslomsg_rabbit_queue_manager %} +hostname = {{ [ansible_facts['hostname'], aodh_service_name] | join('-') }} +{% endif %} rabbit_stream_fanout = {{ aodh_oslomsg_rabbit_stream_fanout }} rabbit_quorum_delivery_limit = {{ aodh_oslomsg_rabbit_quorum_delivery_limit }} rabbit_quorum_max_memory_bytes = {{ aodh_oslomsg_rabbit_quorum_max_memory_bytes }}