From 35a78a049675b590a72cae47315c92a889627cfb Mon Sep 17 00:00:00 2001 From: Billy Olsen Date: Fri, 20 Jul 2018 11:51:53 -0700 Subject: [PATCH] Configure notifications to be unversioned Beginning in the Pike release, Nova started sending both versioned and unversioned notifications. The verioned notification queues do not have any consumers so this causes some queues to fill up until either the messages expire or they are flushed. This changes the nova configuration to only send unversioned (legacy) notifications. Change-Id: Idca18960542b7d7710b8f6c4ee1c579603b0e08b Related-bug: #1665449 --- templates/pike/nova.conf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/templates/pike/nova.conf b/templates/pike/nova.conf index 27d78f73..e9aa61f0 100644 --- a/templates/pike/nova.conf +++ b/templates/pike/nova.conf @@ -230,6 +230,13 @@ pool = {{ storage_pool }} {% include "section-rabbitmq-oslo" %} +[notifications] +# Starting in the Pike release, the notification_format includes both the +# versioned and unversioned message notifications. Ceilometer does not yet +# consume the versioned message notifications, so intentionally make the +# notification format unversioned until this is implemented. +notification_format = unversioned + {% include "section-oslo-notifications" %} {% include "parts/section-cinder" %}