-
Notifications
You must be signed in to change notification settings - Fork 164
use pushdown as default null filling implementation for timeseries API #8549
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
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
3ada047
use pushdown as default null filling implementation for timeseries API
pjain1 46c6b7c
use first day, month
pjain1 e59d6a1
don't use range func to time bins for duckdb
pjain1 6a76274
Merge branch 'main' into default_null_filling
pjain1 db913fa
change test as per duckdb range behaviour
pjain1 5152580
fix having timespine coalesce circular dependency
pjain1 03f432a
refactor
pjain1 5bc2490
check
pjain1 59886a3
remove method
pjain1 95e59dd
simplify
pjain1 65b8b70
refactor
pjain1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
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.
What's the reasoning behind this test case change? If the time range is:
then you'd expect it to return a timestamp that is inside the time range in UTC?
Do I have this mapping right?
So asking for the time between 5:00 and 5:01 UTC should still give 5:00 UTC, not 6:00 UTC? However if it was asking for the time between 1:00 and 1:01 New York, then it would be acceptable to return 6:00 UTC (although ideally, it should return two rows, both 5:00 UTC and 6:00 UTC).
Uh oh!
There was an error while loading. Please reload this page.
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.
The timezone is
America/New_Yorkin the test case, and duckdb seems to be resolving 1:00America/New_Yorkas 6:00 UTC instead of 5:00.Uh oh!
There was an error while loading. Please reload this page.
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.
Actually it relates to this change as well on line 435 below.
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.
I agree It does look odd though, can try around rewriting range query for duckdb but not sure if it would work. Last option is to always create a manual inline query like we do for other olaps.
Uh oh!
There was an error while loading. Please reload this page.
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.
Let me know your view on this if we should try changing it further or use olap approach if change does not work or just keep it this way.
Uh oh!
There was an error while loading. Please reload this page.
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.
Yeah there were cases that were not taken care of when passing UTC values, I will need to revisit it.
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.
It does not seem to be working for this simple case
expected
2024-03-10 08:00:00+00,2024-03-11 07:00:00+00and2024-03-12 07:00:00+00. Also triedSo its a duckdb thing where is interprets 01:00 as 06:00
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.
In your assessment, how does this impact the correctness of the output charts/values? Our desired behavior is to have a bin for every hour, so ideally on DST days we'd output either 23 or 25 bins (in the case of 25, there would be two bins with the same label after each other).
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.
I checked and see that now there would be 23 or 25 bins depending on time going backwards or forwards. Earlier there were always 24 bins. I don't see any broken chart because of it around the time change.
Uh oh!
There was an error while loading. Please reload this page.
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.
However, I do see now chart skips the time bin at which time goes backwards in Nov which is consistent with the data sent (does not break the chart though). In case of time going forwards in March, chart skips the time bin in both
newandpushdownimplementation so a UI quirk.