Skip to content

Commit

Permalink
Move growing segments to leaderview in GetDataDistributionResponse (m…
Browse files Browse the repository at this point in the history
…ilvus-io#19292)

Signed-off-by: sunby <[email protected]>

Signed-off-by: sunby <[email protected]>
Co-authored-by: sunby <[email protected]>
  • Loading branch information
sunby and sunby authored Sep 20, 2022
1 parent 0306f71 commit 8f84208
Show file tree
Hide file tree
Showing 4 changed files with 248 additions and 247 deletions.
10 changes: 5 additions & 5 deletions internal/proto/query_coord.proto
Original file line number Diff line number Diff line change
Expand Up @@ -414,16 +414,16 @@ message GetDataDistributionRequest {
message GetDataDistributionResponse {
common.Status status = 1;
int64 nodeID = 2;
repeated int64 growing_segmentIDs = 3;
repeated SegmentVersionInfo segments = 4;
repeated ChannelVersionInfo channels = 5;
repeated LeaderView leaderViews = 6;
repeated SegmentVersionInfo segments = 3;
repeated ChannelVersionInfo channels = 4;
repeated LeaderView leader_views = 5;
}

message LeaderView {
int64 collection = 1;
string channel = 2;
map<int64, int64> segmentNodePairs = 3;
map<int64, int64> segment_node_pairs = 3;
repeated int64 growing_segmentIDs = 4;
}


Expand Down
Loading

0 comments on commit 8f84208

Please sign in to comment.