highlights.asciidoc 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [[release-highlights]]
  2. == What's new in {minor-version}
  3. coming::[{minor-version}]
  4. Here are the highlights of what's new and improved in {es} {minor-version}!
  5. ifeval::["{release-state}"!="unreleased"]
  6. For detailed information about this release, see the <<es-release-notes>> and
  7. <<breaking-changes>>.
  8. // Add previous release to the list
  9. Other versions:
  10. {ref-bare}/8.13/release-highlights.html[8.13]
  11. | {ref-bare}/8.12/release-highlights.html[8.12]
  12. | {ref-bare}/8.11/release-highlights.html[8.11]
  13. | {ref-bare}/8.10/release-highlights.html[8.10]
  14. | {ref-bare}/8.9/release-highlights.html[8.9]
  15. | {ref-bare}/8.8/release-highlights.html[8.8]
  16. | {ref-bare}/8.7/release-highlights.html[8.7]
  17. | {ref-bare}/8.6/release-highlights.html[8.6]
  18. | {ref-bare}/8.5/release-highlights.html[8.5]
  19. | {ref-bare}/8.4/release-highlights.html[8.4]
  20. | {ref-bare}/8.3/release-highlights.html[8.3]
  21. | {ref-bare}/8.2/release-highlights.html[8.2]
  22. | {ref-bare}/8.1/release-highlights.html[8.1]
  23. | {ref-bare}/8.0/release-highlights.html[8.0]
  24. endif::[]
  25. // tag::notable-highlights[]
  26. [discrete]
  27. [[add_global_retention_in_data_stream_lifecycle]]
  28. === Add global retention in data stream lifecycle
  29. Data stream lifecycle now supports configuring retention on a cluster level, namely global retention. Global retention
  30. allows us to configure two different retentions:
  31. - `default_retention` is applied to all data streams managed by the data stream lifecycle that do not have retention
  32. defined on the data stream level.
  33. - `max_retention` is applied to all data streams managed by the data stream lifecycle and it allows any data stream
  34. data to be deleted after the `max_retention` has passed.
  35. Furthermore, we introduce the term `effective_retention` which is the retention applied at a certain moment to a data
  36. stream considering all the available retention configurations.
  37. {es-pull}105682[#105682]
  38. // end::notable-highlights[]