-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[DOCS] Add deprecation docs for fractional byte size values #77795
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
jrodewig
merged 5 commits into
elastic:7.x
from
jrodewig:docs__deprecate-fractional-byte-settings
Sep 16, 2021
Merged
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c2f2f8c
[DOCS] Add deprecation docs for fractional byte size values
jrodewig 376b3d2
Fix xref
jrodewig e1add17
Fix xref
jrodewig 9dbb917
Merge remote-tracking branch 'upstream/7.x' into docs__deprecate-frac…
jrodewig 51ebbfa
remove 8.0 removal bit
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,74 @@ | ||
| [[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>>. | ||
|
|
||
| * <<breaking_715_settings_deprecations>> | ||
|
|
||
| //// | ||
| //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[] | ||
| [discrete] | ||
| [[breaking_715_settings_deprecations]] | ||
| ==== Settings deprecations | ||
|
|
||
| [[deprecate-fractional-byte-settings]] | ||
| .Fractional byte size values are deprecated. | ||
| [%collapsible] | ||
| ==== | ||
| *Details* + | ||
| In 6.2, we deprecated support for fractional byte size values, such as `23.5pb`. | ||
| In 8.0, {es} will reject fractional byte size values for: | ||
|
|
||
| * Cluster settings | ||
| * Index settings | ||
| * Cluster state metadata, such as an {ilm-init} policy, that support byte size | ||
| values | ||
|
|
||
| *Impact* + | ||
| To avoid deprecation warnings, discontinue use of fractional byte size values in | ||
| your configurations. Update any existing configurations to use whole values. | ||
| ==== | ||
| // 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.
Since #53927 wasn't merged, I'm going to remove this for now.