From c5895d2c6efc6676679e6973c06b85c0c3a10585 Mon Sep 17 00:00:00 2001 From: gordon chung Date: Tue, 19 Jan 2016 11:20:23 -0500 Subject: [PATCH] add additional mitaka-2 release notes Change-Id: Ifffb35b02eb80b37fb86a42f50c1914fd08a3fc5 --- .../notes/batch-messaging-d126cc525879d58e.yaml | 12 ++++++++++++ .../notes/cors-support-70c33ba1f6825a7b.yaml | 9 +++++++++ 2 files changed, 21 insertions(+) create mode 100644 releasenotes/notes/batch-messaging-d126cc525879d58e.yaml create mode 100644 releasenotes/notes/cors-support-70c33ba1f6825a7b.yaml diff --git a/releasenotes/notes/batch-messaging-d126cc525879d58e.yaml b/releasenotes/notes/batch-messaging-d126cc525879d58e.yaml new file mode 100644 index 00000000..e691bec1 --- /dev/null +++ b/releasenotes/notes/batch-messaging-d126cc525879d58e.yaml @@ -0,0 +1,12 @@ +--- +features: + - > + Add support for batch processing of messages from queue. This will allow + the collector and notification agent to grab multiple messages per thread + to enable more efficient processing. +upgrade: + - > + batch_size and batch_timeout configuration options are added to both + [notification] and [collector] sections of configuration. The batch_size + controls the number of messages to grab before processing. Similarly, + the batch_timeout defines the wait time before processing. diff --git a/releasenotes/notes/cors-support-70c33ba1f6825a7b.yaml b/releasenotes/notes/cors-support-70c33ba1f6825a7b.yaml new file mode 100644 index 00000000..c9fbe533 --- /dev/null +++ b/releasenotes/notes/cors-support-70c33ba1f6825a7b.yaml @@ -0,0 +1,9 @@ +--- +features: + - > + Support for CORS is added. More information can be found + [`here `_] +upgrade: + - > + The api-paste.ini file can be modified to include or exclude the CORs + middleware. Additional configurations can be made to middleware as well.