forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Integrate SQLite as an Offline Store for Feast #7
Open
devin-ai-integration
wants to merge
11
commits into
master
Choose a base branch
from
clean-sqlite-integration
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
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
* fix: revert java testcontainers to use docker-based compose Signed-off-by: tokoko <[email protected]> * fix: update testcontainers-java to Compose v2 Signed-off-by: tokoko <[email protected]> --------- Signed-off-by: tokoko <[email protected]> Co-authored-by: tokoko <[email protected]>
…st-dev#4378) Signed-off-by: Bhargav Dodla <[email protected]> Co-authored-by: Bhargav Dodla <[email protected]>
) Signed-off-by: Tommy Hughes <[email protected]>
…4366) feat: instrument feature store This commit adds opentelemetry to monitor Feast Signed-off-by: Twinkll Sisodia <[email protected]>
* docs: Adding some content about the push vs pull model Signed-off-by: Francisco Javier Arceo <[email protected]> * feat: Updating SQLite-Vec to stable release version: Signed-off-by: Francisco Javier Arceo <[email protected]> * removing push model changes from other branch Signed-off-by: Francisco Javier Arceo <[email protected]> --------- Signed-off-by: Francisco Javier Arceo <[email protected]>
* docs: Adding some content about the push vs pull model Signed-off-by: Francisco Javier Arceo <[email protected]> * checking in progress...all of this was mostly autogenerated Signed-off-by: Francisco Javier Arceo <[email protected]> * updated Signed-off-by: Francisco Javier Arceo <[email protected]> * Update push-vs-pull-model.md * Update push-vs-pull-model.md * Update push-vs-pull-model.md --------- Signed-off-by: Francisco Javier Arceo <[email protected]>
… annotation (feast-dev#4391) fix: Using get_type_hints instead of inspect for udf return type Signed-off-by: Bhargav Dodla <[email protected]> Co-authored-by: Bhargav Dodla <[email protected]>
* Apply fix Signed-off-by: Job Almekinders <[email protected]> * Add special characters to postgres online store test Signed-off-by: Job Almekinders <[email protected]> * Fix linting error Signed-off-by: Job Almekinders <[email protected]> --------- Signed-off-by: Job Almekinders <[email protected]>
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.
Integrate SQLite as an Offline Store for Feast
This pull request introduces SQLite as a new offline store option for Feast. The following changes have been made:
SQLiteOfflineStore
class insdk/python/feast/infra/offline_stores/sqlite.py
.sdk/python/tests/integration/registration/test_universal_types.py
.This integration allows Feast users to utilize SQLite as a lightweight and easy-to-setup offline store for feature storage and retrieval.
Changes Made
SQLiteOfflineStore
class implementing theOfflineStore
interface.get_historical_features
using the SQLite implementation.Testing
test_universal_types.py
.Next Steps
Link to Devin run: https://preview.devin.ai/devin/7cef0302e9854874b881f29528c6b0d6
This Devin run was requested by Francisco Javier