highlights.asciidoc 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. [[improve_storage_efficiency_for_non_metric_fields_in_tsdb]]
  28. === Improve storage efficiency for non-metric fields in TSDB
  29. Adds a new `doc_values` encoding for non-metric fields in TSDB that takes advantage of TSDB's index sorting.
  30. While terms that are used in multiple documents (such as the host name) are already stored only once in the terms dictionary,
  31. there are a lot of repetitions in the references to the terms dictionary that are stored in `doc_values` (ordinals).
  32. In TSDB, documents (and therefore `doc_values`) are implicitly sorted by dimenstions and timestamp.
  33. This means that for each time series, we are storing long consecutive runs of the same ordinal.
  34. With this change, we are introducing an encoding that detects and efficiently stores runs of the same value (such as `1 1 1 2 2 2 …`),
  35. and runs of cycling values (such as `1 2 1 2 …`).
  36. In our testing, we have seen a reduction in storage size by about 13%.
  37. The effectiveness of this encoding depends on how many non-metric fields, such as dimensions, are used.
  38. The more non-metric fields, the more effective this improvement will be.
  39. {es-pull}99747[#99747]
  40. [discrete]
  41. [[ga_release_of_synonyms_api]]
  42. === GA Release of Synonyms API
  43. Removes the beta label for the Synonyms API to make it GA.
  44. {es-pull}103223[#103223]
  45. [discrete]
  46. [[flag_in_field_caps_to_return_only_fields_with_values_in_index]]
  47. === Flag in `_field_caps` to return only fields with values in index
  48. We added support for filtering the field capabilities API output by removing
  49. fields that don't have a value. This can be done through the newly added
  50. `include_empty_fields` parameter, which defaults to true.
  51. {es-pull}103651[#103651]
  52. // end::notable-highlights[]