From f24ea44401b8945c9cb8a34b2aedebba3c040691 Mon Sep 17 00:00:00 2001 From: gordon chung Date: Tue, 1 Dec 2015 11:49:50 -0500 Subject: [PATCH] add initial release notes Change-Id: I6eb9d874335b9caac14c28660bee81c3289cea8f --- .../configurable-data-collector-e247aadbffb85243.yaml | 10 ++++++++++ releasenotes/notes/gnocchi-cache-1d8025dfc954f281.yaml | 10 ++++++++++ releasenotes/notes/remove-alarms-4df3cdb4f1fb5faa.yaml | 5 +++++ .../notes/remove-eventlet-6738321434b60c78.yaml | 4 ++++ .../notes/sql-query-optimisation-ebb2233f7a9b5d06.yaml | 6 ++++++ .../notes/support-snmp-cpu-util-5c1c7afb713c1acd.yaml | 5 +++++ .../notes/thread-safe-matching-4a635fc4965c5d4c.yaml | 6 ++++++ 7 files changed, 46 insertions(+) create mode 100644 releasenotes/notes/configurable-data-collector-e247aadbffb85243.yaml create mode 100644 releasenotes/notes/gnocchi-cache-1d8025dfc954f281.yaml create mode 100644 releasenotes/notes/remove-alarms-4df3cdb4f1fb5faa.yaml create mode 100644 releasenotes/notes/remove-eventlet-6738321434b60c78.yaml create mode 100644 releasenotes/notes/sql-query-optimisation-ebb2233f7a9b5d06.yaml create mode 100644 releasenotes/notes/support-snmp-cpu-util-5c1c7afb713c1acd.yaml create mode 100644 releasenotes/notes/thread-safe-matching-4a635fc4965c5d4c.yaml diff --git a/releasenotes/notes/configurable-data-collector-e247aadbffb85243.yaml b/releasenotes/notes/configurable-data-collector-e247aadbffb85243.yaml new file mode 100644 index 0000000000..0bda59cb41 --- /dev/null +++ b/releasenotes/notes/configurable-data-collector-e247aadbffb85243.yaml @@ -0,0 +1,10 @@ +--- +features: + - > + [`bug 1480333 `_] + Support ability to configure collector to capture events or meters mutally + exclusively, rather than capturing both always. +other: + - > + Configure individual dispatchers by specifying meter_dispatchers and + event_dispatchers in configuration file. diff --git a/releasenotes/notes/gnocchi-cache-1d8025dfc954f281.yaml b/releasenotes/notes/gnocchi-cache-1d8025dfc954f281.yaml new file mode 100644 index 0000000000..653d3b32f9 --- /dev/null +++ b/releasenotes/notes/gnocchi-cache-1d8025dfc954f281.yaml @@ -0,0 +1,10 @@ +--- +features: + - > + Support resource caching in Gnocchi dispatcher to improve write + performance to avoid additional queries. +other: + - > + A dogpile.cache supported backend is required to enable cache. Additional + configuration `options `_ + are also required. diff --git a/releasenotes/notes/remove-alarms-4df3cdb4f1fb5faa.yaml b/releasenotes/notes/remove-alarms-4df3cdb4f1fb5faa.yaml new file mode 100644 index 0000000000..42955cdd48 --- /dev/null +++ b/releasenotes/notes/remove-alarms-4df3cdb4f1fb5faa.yaml @@ -0,0 +1,5 @@ +--- +features: + - > + Ceilometer alarms code is now fully removed from code base. + Equivalent functionality is handled by Aodh. diff --git a/releasenotes/notes/remove-eventlet-6738321434b60c78.yaml b/releasenotes/notes/remove-eventlet-6738321434b60c78.yaml new file mode 100644 index 0000000000..2b56515274 --- /dev/null +++ b/releasenotes/notes/remove-eventlet-6738321434b60c78.yaml @@ -0,0 +1,4 @@ +--- +features: + - > + Remove eventlet from Ceilometer in favour of threaded approach diff --git a/releasenotes/notes/sql-query-optimisation-ebb2233f7a9b5d06.yaml b/releasenotes/notes/sql-query-optimisation-ebb2233f7a9b5d06.yaml new file mode 100644 index 0000000000..39482a9131 --- /dev/null +++ b/releasenotes/notes/sql-query-optimisation-ebb2233f7a9b5d06.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - > + [`bug 1506738 `_] + [`bug 1509677 `_] + Optimise SQL backend queries to minimise query load diff --git a/releasenotes/notes/support-snmp-cpu-util-5c1c7afb713c1acd.yaml b/releasenotes/notes/support-snmp-cpu-util-5c1c7afb713c1acd.yaml new file mode 100644 index 0000000000..fb970fd0c2 --- /dev/null +++ b/releasenotes/notes/support-snmp-cpu-util-5c1c7afb713c1acd.yaml @@ -0,0 +1,5 @@ +--- +features: + - > + [`bug 1513731 `_] + Add support for hardware cpu_util in snmp.yaml diff --git a/releasenotes/notes/thread-safe-matching-4a635fc4965c5d4c.yaml b/releasenotes/notes/thread-safe-matching-4a635fc4965c5d4c.yaml new file mode 100644 index 0000000000..fbb6414ce4 --- /dev/null +++ b/releasenotes/notes/thread-safe-matching-4a635fc4965c5d4c.yaml @@ -0,0 +1,6 @@ +--- +critical: + - > + [`bug 1519767 `_] + fnmatch functionality in python <= 2.7.9 is not threadsafe. this issue and + its potential race conditions are now patched.