-
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
Begin moving date_histogram to offset rounding (take two) #51271
Merged
nik9000
merged 6 commits into
elastic:master
from
nik9000:offset_rounding_date_histogram_3
Jan 27, 2020
Merged
Begin moving date_histogram to offset rounding (take two) #51271
nik9000
merged 6 commits into
elastic:master
from
nik9000:offset_rounding_date_histogram_3
Jan 27, 2020
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ic#50873)" (elastic#51238)" This reverts commit d114c9d.
Pinging @elastic/es-analytics-geo (:Analytics/Aggregations) |
nik9000
changed the title
Offset rounding date histogram 3
Begin moving date_histogram to offset rounding (take two)
Jan 21, 2020
not-napoleon
approved these changes
Jan 21, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
nik9000
added a commit
to nik9000/elasticsearch
that referenced
this pull request
Jan 27, 2020
) We added a new rounding in elastic#50609 that handles offsets to the start and end of the rounding so that we could support `offset` in the `composite` aggregation. This starts moving `date_histogram` to that new offset. This is a redo of elastic#50873 with more integration tests. This reverts commit d114c9d.
nik9000
added a commit
that referenced
this pull request
Jan 27, 2020
…51495) We added a new rounding in #50609 that handles offsets to the start and end of the rounding so that we could support `offset` in the `composite` aggregation. This starts moving `date_histogram` to that new offset. This is a redo of #50873 with more integration tests. This reverts commit d114c9d.
nik9000
added a commit
to nik9000/elasticsearch
that referenced
this pull request
Mar 16, 2020
I broke sorting aggregations by `doc_count` in elastic#51271 by mixing up true and false. This flips that comparison and adds a few tests to double check that we don't so this again.
nik9000
added a commit
that referenced
this pull request
Mar 16, 2020
I broke sorting aggregations by `doc_count` in #51271 by mixing up true and false. This flips that comparison and adds a few tests to double check that we don't so this again.
nik9000
added a commit
to nik9000/elasticsearch
that referenced
this pull request
Mar 16, 2020
I broke sorting aggregations by `doc_count` in elastic#51271 by mixing up true and false. This flips that comparison and adds a few tests to double check that we don't so this again.
nik9000
added a commit
that referenced
this pull request
Mar 16, 2020
38 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We added a new rounding in #50609 that handles offsets to the start and
end of the rounding so that we could support
offset
in thecomposite
aggregation. This starts moving
date_histogram
to that new offset.This is a redo of #50873 with more integration tests.