Skip to content

Commit

Permalink
change SubscribeResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
CAJan93 committed Jun 6, 2024
1 parent d54a613 commit 443126d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion proto/meta.proto
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,10 @@ message SubscribeResponse {
FragmentWorkerSlotMapping streaming_worker_slot_mapping = 27;
FragmentWorkerSlotMappings serving_worker_slot_mappings = 28;
catalog.Secret secret = 29;

// holds all MVs which have completed their backfill operations
// contains IDs from catalog.Table.id
repeated uint32 mv_backfills_completed = 30;

Check failure on line 477 in proto/meta.proto

View workflow job for this annotation

GitHub Actions / Check breaking changes in Protobuf files

syntax error: unexpected "repeated"
}
reserved 12;
reserved "parallel_unit_mapping";
Expand Down Expand Up @@ -560,7 +564,8 @@ message GetReschedulePlanResponse {
}

service ScaleService {
rpc SubscribeClusterInfo(GetClusterInfoRequest) returns (stream GetClusterInfoResponse);
// For the first version we will use busy wait and just repeatably send GetClusterInfoRequest
// rpc SubscribeClusterInfo(GetClusterInfoRequest) returns (stream GetClusterInfoResponse);
rpc GetClusterInfo(GetClusterInfoRequest) returns (GetClusterInfoResponse);
rpc Reschedule(RescheduleRequest) returns (RescheduleResponse);
rpc GetReschedulePlan(GetReschedulePlanRequest) returns (GetReschedulePlanResponse);
Expand Down

0 comments on commit 443126d

Please sign in to comment.