-
Notifications
You must be signed in to change notification settings - Fork 11
Demo/go feature server #17
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
Conversation
77131fc to
cea42e0
Compare
1a43286 to
ae3598c
Compare
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
This updates the connection strings in feature_store.yaml to use environment variables for key variables, making it easier to reuse this dmeo across more deployment topologies (e.g. when you want to deploy the online and offline stores on a remote host) Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
86b5cdd to
53c0e5a
Compare
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
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.
Pull Request Overview
This PR provides a demo for the Go Feature server to run locally, removing dependencies on PostgreSQL and Streamlit while adding support for gRPC-based feature serving and transformation services.
- Replaced PostgreSQL registry with file-based registry for simpler local setup
- Switched from DuckDB to Dask offline store for improved compatibility
- Added Go feature server demo with transformation service support
Reviewed Changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| pyproject.toml | Removed UI/visualization dependencies and PostgreSQL drivers, added gRPC packages for Go feature server support |
| feature_repo/feature_store.yaml | Changed registry from SQL to file-based, switched offline store to Dask, enabled Go feature serving |
| demo_walkthrough.ipynb | Removed entire Jupyter notebook demo |
| app_with_transformation_server.py | Added new server script for running feature transformation service |
| app.py | Added UTF-8 encoding declaration and removed unused import |
| README.md | Updated documentation to reflect new setup without PostgreSQL, added comprehensive Go feature server demo instructions |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Provide a demo fo Go Feature server which able to run locally.
Fix #7