-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: Range query materialization #185
base: master
Are you sure you want to change the base?
Conversation
kpulipati29
commented
Mar 4, 2025
•
edited
Loading
edited
- Changes in online_write_batch to accommodate SortedFeaureView
- Changes in both batch and stream materialization process to pass the whole time series data (vs only the latest feature) in case of SortedFeaureView
@@ -74,6 +76,10 @@ | |||
" (?, ?, ?, ?) USING TTL {ttl};" | |||
) | |||
|
|||
INSERT_TIME_SERIES_TEMPLATE = ( |
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.
We shouldn't call it "time series" since it can be used for any sorted set. I suggest going with "sorted features" to be consistent with the SortedFeatureView name.
You will also need to update relevant materialization files. Example here |
Oh yeah, let me check, thought the changes in spark files were enough. |