-
Notifications
You must be signed in to change notification settings - Fork 25k
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
[DOCS] Fix <index> param def for delete index API #74674
Conversation
The current documentation leads to assume that you cannot delete an index if there is an alias that exists and links to it. This appears not to be the case and what it means is that it cannot be deleted through the alias name.
Pinging @elastic/es-core-features (Team:Core/Features) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing this @LiamMacP. The original wording was indeed unclear.
I've pushed some changes to fix some other errors and reorganize the info for this parameter. With those changes, this LGTM.
Thanks again!
@elasticmachine ok to test |
Clarifies that you cannot specify an alias in the delete index API. You _can_ delete indices with an alias. Co-authored-by: James Rodewig <[email protected]> Co-authored-by: Liam MacPherson <[email protected]>
Clarifies that you cannot specify an alias in the delete index API. You _can_ delete indices with an alias. Co-authored-by: James Rodewig <[email protected]> Co-authored-by: Liam MacPherson <[email protected]>
Clarifies that you cannot specify an alias in the delete index API. You _can_ delete indices with an alias. Co-authored-by: James Rodewig <[email protected]> # Conflicts: # docs/reference/indices/delete-index.asciidoc Co-authored-by: Liam MacPherson <[email protected]>
In 7.x versions, the `action.destructive_requires_name` cluster setting defaults to `false`. The 7.x backports of #74674 introduced a docs bug that indicate the setting defaults to `true`. This reverts the related changes.
The current documentation leads to assume that you cannot delete an index if there is an alias that exists and links to it. This appears not to be the case and what it means is that it cannot be deleted through the alias name.