Skip to content

Commit

Permalink
fix: final AIWB requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
zabarn committed Sep 24, 2024
1 parent 5af0938 commit 8d4e105
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 353 deletions.
14 changes: 3 additions & 11 deletions protos/feast/registry/RegistryServer.proto
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,13 @@ service RegistryServer{
// Search RPCs
rpc ExpediaSearchProjects (ExpediaSearchProjectsRequest) returns (ExpediaSearchProjectsResponse) {}
rpc ExpediaSearchFeatureViews (ExpediaSearchFeatureViewsRequest) returns (ExpediaSearchFeatureViewsResponse) {}
rpc ExpediaSearchAIWBTableByProject (ExpediaSearchProjectsRequest) returns (ExpediaSearchAIWBTableResponse) {}
rpc ExpediaSearchAIWBTableByFeatureView (ExpediaSearchFeatureViewsRequest) returns (ExpediaSearchAIWBTableResponse) {}
}

message ExpediaProjectAndRelatedFeatureViews {
feast.core.ProjectMetadata project_metadata = 1;
repeated feast.core.FeatureView feature_views = 2;
}

message ExpediaSearchAIWBTableResponse {
repeated ExpediaProjectAndRelatedFeatureViews project_and_related_feature_views = 1;
int32 total_projects = 3;
int32 total_page_indices = 4;
}

message ExpediaSearchFeatureViewsRequest {
string search_text = 1;
google.protobuf.BoolValue online = 2;
Expand All @@ -112,9 +104,9 @@ message ExpediaSearchProjectsRequest {
}

message ExpediaSearchProjectsResponse {
repeated feast.core.ProjectMetadata projects = 1;
int32 total_projects = 2;
int32 total_page_indices = 3;
repeated ExpediaProjectAndRelatedFeatureViews projects_and_related_feature_views = 1;
int32 total_projects = 3;
int32 total_page_indices = 4;
}

message RefreshRequest {
Expand Down
Loading

0 comments on commit 8d4e105

Please sign in to comment.