Merge "Add missing mitaka release notes"

This commit is contained in:
Jenkins 2016-03-29 15:24:19 +00:00 committed by Gerrit Code Review
commit 7634f97dc0
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,11 @@
---
prelude: >
Added separation of administrator-only data at an index
level, which allows full faceting and searching of
sensitive data by those with access to it.
features:
- Plugins with sensitive, administrator-only data are
indexed twice; once with that data and once without.
Searches are directed to the appropriate version
depending on the context of the user.

View File

@ -0,0 +1,24 @@
---
prelude: >
Ability added to reindex data while allowing indexing
of notifications, and therefore returning accurate
search results during the indexing operation.
features:
- Reindexing of data now takes place in a separate
Elasticsearch index. During indexing, incoming events
are processed into both the old and new indices.
Once indexing is complete, an Elasticsearch alias is
used to switch searches seamlessly onto the new index,
at which time the old one is removed.
- Plugin configuration refers to `resource_group_name`
rather than `index_name` to represent groups of
resources separate from the logical Elasticsearch index.
This setting is used to determine index and alias names.
issues:
- Reindexing must now take place across all resource
types that share the index (it is not possible to re-index
a specific resource type). This is a limitation that
Elasticsearch 2.x would likely have forced upon us anyway.
A subsequent patch will allow more efficient reindexing
for associated resource types.