[DOCS] Prohibit deletion of a data stream's write index (#58341) (#58358)

This commit is contained in:
James Rodewig 2020-06-18 16:00:10 -04:00 committed by GitHub
parent 6680271691
commit b8fa90198b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,11 @@ with `_all` or wildcard expressions, change the
`action.destructive_requires_name` cluster setting to `true`. You can update
this setting in the `elasticsearch.yml` file or using the
<<cluster-update-settings,cluster update settings>> API.
NOTE: You cannot delete the current write index of a data stream. To delete the
index, you must <<rollover-data-stream-ex,roll over>> the data stream so a new
write index is created. You can then use the delete index API to delete the
previous write index.
--