Add release highlights for 7.6 (#51070)
Add release highlights for 7.6 Co-authored-by: James Rodewig <james.rodewig@elastic.co>
This commit is contained in:
parent
932c63297f
commit
b38fdf9f94
|
@ -0,0 +1,32 @@
|
|||
[[release-highlights-7.6.0]]
|
||||
== 7.6.0 release highlights
|
||||
++++
|
||||
<titleabbrev>7.6.0</titleabbrev>
|
||||
++++
|
||||
|
||||
//NOTE: The notable-highlights tagged regions are re-used in the
|
||||
//Installation and Upgrade Guide
|
||||
|
||||
// tag::notable-highlights[]
|
||||
[float]
|
||||
==== New histogram field type
|
||||
|
||||
A new {ref}/histogram.html[histogram field type] has been added. The new `histogram` field accepts
|
||||
pre-aggregated histograms which can later be used directly in the
|
||||
{ref}/search-aggregations-metrics-percentile-aggregation.html[percentiles] and
|
||||
{ref}/search-aggregations-metrics-percentile-rank-aggregation.html[percentile_ranks] aggregations.
|
||||
This allows users to pre-aggregate histogram data locally and only send the final
|
||||
data structure, saving storage and network bandwidth while retaining the ability to
|
||||
aggregate it like any other data.
|
||||
|
||||
// end::notable-highlights[]
|
||||
|
||||
// tag::notable-highlights[]
|
||||
[float]
|
||||
==== Optimized sorting on long field types
|
||||
|
||||
Sorting on a {ref}/number.html[`long`] field now internally rewrites into a Lucene `DistanceFeatureQuery`.
|
||||
This lets {es} skip non-competitive hits, which often improves query speed.
|
||||
In benchmarking tests, this sped up sorts on `long` fields by 10x.
|
||||
|
||||
// end::notable-highlights[]
|
|
@ -6,6 +6,7 @@
|
|||
This section summarizes the most important changes in each release. For the
|
||||
full list, see <<es-release-notes>> and <<breaking-changes>>.
|
||||
|
||||
* <<release-highlights-7.6.0>>
|
||||
* <<release-highlights-7.5.0>>
|
||||
* <<release-highlights-7.4.0>>
|
||||
* <<release-highlights-7.3.0>>
|
||||
|
@ -15,6 +16,7 @@ full list, see <<es-release-notes>> and <<breaking-changes>>.
|
|||
|
||||
--
|
||||
|
||||
include::highlights-7.6.0.asciidoc[]
|
||||
include::highlights-7.5.0.asciidoc[]
|
||||
include::highlights-7.4.0.asciidoc[]
|
||||
include::highlights-7.3.0.asciidoc[]
|
||||
|
|
Loading…
Reference in New Issue