-
Notifications
You must be signed in to change notification settings - Fork 25.7k
[DOCS] Add deprecation docs for 6.x and earlier indices #77804
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
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
dbcafd7
[DOCS] Add deprecation docs for 6.x and earlier indices
jrodewig 4c2b6d8
Fix xref
jrodewig 7d66f0b
Fix xref
jrodewig 028e6ff
Remove data stream refs
jrodewig 63550af
Merge remote-tracking branch 'upstream/7.x' into docs__deprecate-6.x-…
jrodewig b29dca2
Fix merge conflict
jrodewig 03fd50f
Fix whitespace
jrodewig File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| [[migrating-7.15]] | ||
| == Migrating to 7.15 | ||
| ++++ | ||
| <titleabbrev>7.15</titleabbrev> | ||
| ++++ | ||
|
|
||
| This section discusses the changes that you need to be aware of when migrating | ||
| your application to {es} 7.15. | ||
|
|
||
| See also <<release-highlights>> and <<es-release-notes>>. | ||
|
|
||
| //// | ||
| //NOTE: The notable-breaking-changes tagged regions are re-used in the | ||
| //Installation and Upgrade Guide | ||
|
|
||
| [discrete] | ||
| [[breaking-changes-7.15]] | ||
| === Breaking changes | ||
|
|
||
| The following changes in {es} 7.15 might affect your applications | ||
| and prevent them from operating normally. | ||
| Before upgrading to 7.15, review these changes and take the described steps | ||
| to mitigate the impact. | ||
|
|
||
| NOTE: Breaking changes introduced in minor versions are | ||
| normally limited to security and bug fixes. | ||
| Significant changes in behavior are deprecated in a minor release and | ||
| the old behavior is supported until the next major release. | ||
| To find out if you are using any deprecated functionality, | ||
| enable <<deprecation-logging, deprecation logging>>. | ||
|
|
||
| // tag::notable-breaking-changes[] | ||
| // end::notable-breaking-changes[] | ||
| //// | ||
|
|
||
| [discrete] | ||
| [[deprecated-7.15]] | ||
| === Deprecations | ||
|
|
||
| The following functionality has been deprecated in {es} 7.15 and will be removed | ||
| in 8.0. While this won't have an immediate impact on your applications, we | ||
| strongly encourage you take the described steps to update your code after | ||
| upgrading to 7.15. | ||
|
|
||
| NOTE: Significant changes in behavior are deprecated in a minor release and the | ||
| old behavior is supported until the next major release. To find out if you are | ||
| using any deprecated functionality, enable <<deprecation-logging, deprecation | ||
| logging>>. | ||
|
|
||
| // tag::notable-breaking-changes[] | ||
| [[deprecate-6x-indices]] | ||
| .Indices created in Elasticsearch 6.x and earlier versions are deprecated. | ||
| [%collapsible] | ||
| ==== | ||
| *Details* + | ||
| In 8.x, {es} will only read indices created in version 7.0 or above. An 8.x node | ||
| will not start in the presence of indices created in 6.x or earlier versions of | ||
| {es}. | ||
|
|
||
| *Impact* + | ||
| Before upgrading to an 8.x version, reindex any index or data stream created in | ||
| 6.x or earlier versions with {es} 7.x. If you no longer need the index or data | ||
| stream, delete it instead. | ||
|
|
||
| You can use the get index API to check the {es} version in which an index | ||
| was created. | ||
|
|
||
| [source,console] | ||
| ---- | ||
| GET *,-.*?human=true&filter_path=**.settings.index.version.created_string | ||
| ---- | ||
| ==== | ||
| // end::notable-breaking-changes[] | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Ugh. You can't actually create data streams in 6.x or earlier versions. I'll remove those references.