-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Fix ingester results for series query #2264
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2264 +/- ##
==========================================
+ Coverage 62.44% 62.47% +0.03%
==========================================
Files 158 158
Lines 12762 12769 +7
==========================================
+ Hits 7969 7978 +9
Misses 4177 4177
+ Partials 616 614 -2
|
The other PR I have open is gonna screw this one up a bit, and also looks like I introduce another case where you could hit this same bug, I'd like to get that merged first if we could. Also we should see if we can get some tests on this, that would be good. |
FYI The other PR has been merged, you can merge upstream. |
I think I created this PR just before @slim-bean's PR got merged. I will rebase this. |
005e3b7
to
e8021e8
Compare
b3936f4
to
d16b415
Compare
d16b415
to
2aca95d
Compare
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
This should not be merged. Looks like this change will induce one more data race. We have to fix this first #2265 |
This should be good to merge now. No change required on this PR. |
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
Great work !
What this PR does / why we need it:
While querying series API,
ingester
returns the result even when the request time range is outside of chunk time range. This PR fixes this issue.