-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
Experimental feature: variable_width_histogram #58573
Labels
:Analytics/Aggregations
Aggregations
experimental/beta
Team:Analytics
Meta label for analytical engine team (ESQL/Aggs/Geo)
Comments
Pinging @elastic/es-analytics-geo (:Analytics/Aggregations) |
elasticmachine
added
the
Team:Analytics
Meta label for analytical engine team (ESQL/Aggs/Geo)
label
Jun 25, 2020
nik9000
added a commit
to nik9000/elasticsearch
that referenced
this issue
Jun 25, 2020
We're tracking this aggregation's experimental-progress in elastic#58573. We'd like a little time to be able to make backwards incompatible changes to the aggregation because we're not 100% sure about the request and response format yet.
nik9000
added a commit
that referenced
this issue
Jun 25, 2020
We're tracking this aggregation's experimental-progress in #58573. We'd like a little time to be able to make backwards incompatible changes to the aggregation because we're not 100% sure about the request and response format yet.
nik9000
added a commit
that referenced
this issue
Jun 25, 2020
We're tracking this aggregation's experimental-progress in #58573. We'd like a little time to be able to make backwards incompatible changes to the aggregation because we're not 100% sure about the request and response format yet.
We should almost certainly fix |
29 tasks
nik9000
added a commit
to nik9000/elasticsearch
that referenced
this issue
Dec 8, 2020
Its been several months and we haven't bumped into any good reason to rework the variable width histogram. So let's drop experimental from it! Closes elastic#58573
nik9000
added a commit
that referenced
this issue
Dec 8, 2020
Its been several months and we haven't bumped into any good reason to rework the variable width histogram. So let's drop experimental from it! Closes #58573
nik9000
added a commit
to nik9000/elasticsearch
that referenced
this issue
Dec 8, 2020
Its been several months and we haven't bumped into any good reason to rework the variable width histogram. So let's drop experimental from it! Closes elastic#58573
nik9000
added a commit
that referenced
this issue
Dec 8, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
:Analytics/Aggregations
Aggregations
experimental/beta
Team:Analytics
Meta label for analytical engine team (ESQL/Aggs/Geo)
In #42035 @jamesdorfman added a neat new kind of aggregations which performs similarly to a regular
histogram
but instead to specifying the width of each bucket you specify how many buckets you'd like, kind of like theauto_date_histogram
. Unlikeauto_date_histogram
,variable_width_histogram
's buckets have, well, variable width. The particulars of its algorithm mean that the buckets won't necessarily have the same number of documents in them. Instead it tries to preserve the shape of the data. When it has to merge buckets together it merges the buckets that are closest together already.This is an interesting and new aggregation, and, frankly, we're not sure that we've really thought through the interface all the way. So we'd like some feedback on it and some time to be able to make breaking changes to its request and/or response. This, we're marking it
experimental
. Our plan to removeexperimental
is to have a few folks take a look at it and comment.The text was updated successfully, but these errors were encountered: