Skip to content

[DOCS] Add 8.0 release highlight for system indices #83683

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/reference/release-notes/highlights.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,28 @@ Need a new enrollment token? Use the
{ref}/create-enrollment-token.html[`elasticsearch-create-enrollment-token`]
tool to create enrollment tokens for {es} nodes and {kib} instances.

[discrete]
=== Better protection for system indices

System indices store configurations and internal data for Elastic features.
Generally, system indices are reserved only for internal use by these features.
While possible, directly accessing or changing a system index can cause
instability and other issues.

In 8.0, we've made several changes to protect system indices from direct access.
To access a system index, you must now have the
{ref}/defining-roles.html#roles-indices-priv[`allow_restricted_indices`]
permission set to `true`.

The `superuser` role also no longer gives write access to system indices. As a
result, the built-in `elastic` superuser can't change system indices by
default.

If available, use {kib} or the associated {es} APIs to manage data for a feature
rather than accessing a system index. If you attempt to directly access a system index,
{es} will return a warning in the header of API responses and in the deprecation
logs.

[discrete]
=== Storage savings for `keyword`, `match_only_text`, and `text` fields

Expand Down