Skip to content

Add release highlights for 7.6 #51070

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
merged 3 commits into from
Jan 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions docs/reference/release-notes/highlights-7.6.0.asciidoc
Original file line number Diff line number Diff line change
@@ -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[]
2 changes: 2 additions & 0 deletions docs/reference/release-notes/highlights.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -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>>
Expand All @@ -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[]
Expand Down