migrate_8_1.asciidoc 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. [[migrating-8.1]]
  2. == Migrating to 8.1
  3. ++++
  4. <titleabbrev>8.1</titleabbrev>
  5. ++++
  6. This section discusses the changes that you need to be aware of when migrating
  7. your application to {es} 8.1.
  8. See also <<release-highlights>> and <<es-release-notes>>.
  9. coming[8.1.0]
  10. [discrete]
  11. [[breaking-changes-8.1]]
  12. === Breaking changes
  13. The following changes in {es} 8.1 might affect your applications
  14. and prevent them from operating normally.
  15. Before upgrading to 8.0, review these changes and take the described steps
  16. to mitigate the impact.
  17. NOTE: Breaking changes introduced in minor versions are
  18. normally limited to security and bug fixes.
  19. Significant changes in behavior are deprecated in a minor release and
  20. the old behavior is supported until the next major release.
  21. To find out if you are using any deprecated functionality,
  22. enable <<deprecation-logging, deprecation logging>>.
  23. //NOTE: The notable-breaking-changes tagged regions are re-used in the
  24. //Installation and Upgrade Guide
  25. //tag::notable-breaking-changes[]
  26. // end::notable-breaking-changes[]
  27. [discrete]
  28. [[deprecated-8.1]]
  29. === Deprecations
  30. The following functionality has been deprecated in {es} 8.1
  31. and will be removed in a future version.
  32. While this won't have an immediate impact on your applications,
  33. we strongly encourage you take the described steps to update your code
  34. after upgrading to 8.1.
  35. NOTE: Significant changes in behavior are deprecated in a minor release and
  36. the old behavior is supported until the next major release.
  37. To find out if you are using any deprecated functionality,
  38. enable <<deprecation-logging, deprecation logging>>.
  39. [discrete]
  40. [[breaking_8.1_settings_deprecation]]
  41. ==== Settings deprecations
  42. [[deprecate-legacy-discovery-type-setting]]
  43. .Legacy values for the `discovery.type` setting are deprecated.
  44. [%collapsible]
  45. ====
  46. *Details* +
  47. Legacy values for the `discovery.type` setting are deprecated and will be
  48. forbidden in a future version.
  49. *Impact* +
  50. Do not set `discovery.type` to any value except `single-node` or `multi-node`.
  51. All other values are equivalent to the default discovery type which is
  52. `multi-node`. Where possible, omit this setting so that {es} uses the default
  53. discovery type.
  54. ====