-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat: Update the go feature server from Expedia code repo. #4665
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
franciscojavierarceo
merged 10 commits into
feast-dev:master
from
shuchu:feature/migrate-expedia-go-fs
Dec 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
df2f0a6
feat: Update the go feature server from Expedia code repo.
shuchu be909c3
fix: Add go package definition to RegistryServer and Grpcserver.
shuchu 23a8156
fix: Fix the make build-go
shuchu 37b7266
fix: Fix makefile to make test-go work.
shuchu 20aefa9
fix: Removed and commented out DataDog related observability instrume…
shuchu b9eff42
doc: Update the README to mention the contirbution from Expedia Group.
shuchu 4eaa6c7
fix: Remove the HTTP based Registry.
shuchu 953d62e
fix: Use a general string to represent the transformation service end…
shuchu 63dcefa
fix: Set the transformation service endpoint defintion to feature_sto…
shuchu 8e4893c
fix: Fix few format issues.
shuchu 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
fix: Fix makefile to make test-go work.
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
- Loading branch information
commit 37b7266c8a0a2caf793ebfedfef0b3eaa14cbfb9
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -560,6 +560,9 @@ install-go-ci-dependencies: | |
| build-go: compile-protos-go | ||
| go build -o feast ./go/main.go | ||
|
|
||
| install-feast-ci-locally: | ||
| pip install -e ".[ci]" | ||
|
|
||
| test-go: compile-protos-go compile-protos-python install-feast-ci-locally | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
| CGO_ENABLED=1 go test -coverprofile=coverage.out ./... && go tool cover -html=coverage.out -o coverage.html | ||
|
|
||
|
|
||
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.
the inline seems to be at odds with the rest of the Makefile format, could you adjust 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.
done