-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat: Add gRPC Registry Server #3924
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,230 @@ | ||
| syntax = "proto3"; | ||
|
|
||
| package feast.registry; | ||
|
|
||
| import "google/protobuf/timestamp.proto"; | ||
| import "google/protobuf/empty.proto"; | ||
| import "feast/core/Registry.proto"; | ||
| import "feast/core/Entity.proto"; | ||
| import "feast/core/DataSource.proto"; | ||
| import "feast/core/FeatureView.proto"; | ||
| import "feast/core/RequestFeatureView.proto"; | ||
| import "feast/core/StreamFeatureView.proto"; | ||
| import "feast/core/OnDemandFeatureView.proto"; | ||
| import "feast/core/FeatureService.proto"; | ||
| import "feast/core/SavedDataset.proto"; | ||
| import "feast/core/ValidationProfile.proto"; | ||
| import "feast/core/InfraObject.proto"; | ||
|
|
||
| service RegistryServer{ | ||
| // Entity RPCs | ||
| rpc GetEntity (GetEntityRequest) returns (feast.core.Entity) {} | ||
| rpc ListEntities (ListEntitiesRequest) returns (ListEntitiesResponse) {} | ||
|
|
||
| // DataSource RPCs | ||
| rpc GetDataSource (GetDataSourceRequest) returns (feast.core.DataSource) {} | ||
| rpc ListDataSources (ListDataSourcesRequest) returns (ListDataSourcesResponse) {} | ||
|
|
||
| // FeatureView RPCs | ||
| rpc GetFeatureView (GetFeatureViewRequest) returns (feast.core.FeatureView) {} | ||
| rpc ListFeatureViews (ListFeatureViewsRequest) returns (ListFeatureViewsResponse) {} | ||
|
|
||
| // RequestFeatureView RPCs | ||
| rpc GetRequestFeatureView (GetRequestFeatureViewRequest) returns (feast.core.RequestFeatureView) {} | ||
| rpc ListRequestFeatureViews (ListRequestFeatureViewsRequest) returns (ListRequestFeatureViewsResponse) {} | ||
|
|
||
| // StreamFeatureView RPCs | ||
| rpc GetStreamFeatureView (GetStreamFeatureViewRequest) returns (feast.core.StreamFeatureView) {} | ||
| rpc ListStreamFeatureViews (ListStreamFeatureViewsRequest) returns (ListStreamFeatureViewsResponse) {} | ||
|
|
||
| // OnDemandFeatureView RPCs | ||
| rpc GetOnDemandFeatureView (GetOnDemandFeatureViewRequest) returns (feast.core.OnDemandFeatureView) {} | ||
| rpc ListOnDemandFeatureViews (ListOnDemandFeatureViewsRequest) returns (ListOnDemandFeatureViewsResponse) {} | ||
|
|
||
| // FeatureService RPCs | ||
| rpc GetFeatureService (GetFeatureServiceRequest) returns (feast.core.FeatureService) {} | ||
| rpc ListFeatureServices (ListFeatureServicesRequest) returns (ListFeatureServicesResponse) {} | ||
|
|
||
| // SavedDataset RPCs | ||
| rpc GetSavedDataset (GetSavedDatasetRequest) returns (feast.core.SavedDataset) {} | ||
| rpc ListSavedDatasets (ListSavedDatasetsRequest) returns (ListSavedDatasetsResponse) {} | ||
|
|
||
| // ValidationReference RPCs | ||
| rpc GetValidationReference (GetValidationReferenceRequest) returns (feast.core.ValidationReference) {} | ||
| rpc ListValidationReferences (ListValidationReferencesRequest) returns (ListValidationReferencesResponse) {} | ||
|
|
||
| rpc ListProjectMetadata (ListProjectMetadataRequest) returns (ListProjectMetadataResponse) {} | ||
| rpc GetInfra (GetInfraRequest) returns (feast.core.Infra) {} | ||
| rpc Refresh (RefreshRequest) returns (google.protobuf.Empty) {} | ||
| rpc Proto (google.protobuf.Empty) returns (feast.core.Registry) {} | ||
|
|
||
| } | ||
|
|
||
| message RefreshRequest { | ||
| string project = 1; | ||
| } | ||
|
|
||
| message GetInfraRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListProjectMetadataRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListProjectMetadataResponse { | ||
| repeated feast.core.ProjectMetadata project_metadata = 1; | ||
| } | ||
|
|
||
| message GetEntityRequest { | ||
| string name = 1; | ||
| string project = 2; | ||
| bool allow_cache = 3; | ||
| } | ||
|
|
||
| message ListEntitiesRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListEntitiesResponse { | ||
| repeated feast.core.Entity entities = 1; | ||
| } | ||
|
|
||
| // DataSources | ||
|
|
||
| message GetDataSourceRequest { | ||
| string name = 1; | ||
| string project = 2; | ||
| bool allow_cache = 3; | ||
| } | ||
|
|
||
| message ListDataSourcesRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListDataSourcesResponse { | ||
| repeated feast.core.DataSource data_sources = 1; | ||
| } | ||
|
|
||
| // FeatureViews | ||
|
|
||
| message GetFeatureViewRequest { | ||
| string name = 1; | ||
| string project = 2; | ||
| bool allow_cache = 3; | ||
| } | ||
|
|
||
| message ListFeatureViewsRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListFeatureViewsResponse { | ||
| repeated feast.core.FeatureView feature_views = 1; | ||
| } | ||
|
|
||
| // RequestFeatureView | ||
|
|
||
| message GetRequestFeatureViewRequest { | ||
| string name = 1; | ||
| string project = 2; | ||
| bool allow_cache = 3; | ||
| } | ||
|
|
||
| message ListRequestFeatureViewsRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListRequestFeatureViewsResponse { | ||
| repeated feast.core.RequestFeatureView request_feature_views = 1; | ||
| } | ||
|
|
||
| // StreamFeatureView | ||
|
|
||
| message GetStreamFeatureViewRequest { | ||
| string name = 1; | ||
| string project = 2; | ||
| bool allow_cache = 3; | ||
| } | ||
|
|
||
| message ListStreamFeatureViewsRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListStreamFeatureViewsResponse { | ||
| repeated feast.core.StreamFeatureView stream_feature_views = 1; | ||
| } | ||
|
|
||
| // OnDemandFeatureView | ||
|
|
||
| message GetOnDemandFeatureViewRequest { | ||
| string name = 1; | ||
| string project = 2; | ||
| bool allow_cache = 3; | ||
| } | ||
|
|
||
| message ListOnDemandFeatureViewsRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListOnDemandFeatureViewsResponse { | ||
| repeated feast.core.OnDemandFeatureView on_demand_feature_views = 1; | ||
| } | ||
|
|
||
| // FeatureServices | ||
|
|
||
| message GetFeatureServiceRequest { | ||
| string name = 1; | ||
| string project = 2; | ||
| bool allow_cache = 3; | ||
| } | ||
|
|
||
| message ListFeatureServicesRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListFeatureServicesResponse { | ||
| repeated feast.core.FeatureService feature_services = 1; | ||
| } | ||
|
|
||
| // SavedDataset | ||
|
|
||
| message GetSavedDatasetRequest { | ||
| string name = 1; | ||
| string project = 2; | ||
| bool allow_cache = 3; | ||
| } | ||
|
|
||
| message ListSavedDatasetsRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListSavedDatasetsResponse { | ||
| repeated feast.core.SavedDataset saved_datasets = 1; | ||
| } | ||
|
|
||
| // ValidationReference | ||
|
|
||
| message GetValidationReferenceRequest { | ||
| string name = 1; | ||
| string project = 2; | ||
| bool allow_cache = 3; | ||
| } | ||
|
|
||
| message ListValidationReferencesRequest { | ||
| string project = 1; | ||
| bool allow_cache = 2; | ||
| } | ||
|
|
||
| message ListValidationReferencesResponse { | ||
| repeated feast.core.ValidationReference validation_references = 1; | ||
| } |
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
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.
Uh oh!
There was an error while loading. Please reload this page.