[skip ci]Add some comments in chap07_query_coordinator.md (#11354)

Signed-off-by: ruiyi.jiang <ruiyi.jiang@zilliz.com>
pull/9945/head
ryjiang 2021-11-06 12:15:31 +08:00 committed by GitHub
parent 4e5c8811da
commit bbf081aa53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -247,6 +247,7 @@ type QueryNode interface {
// LoadSegments notifies QueryNode to load the sealed segments from storage. The load tasks are sync to this
// rpc, QueryNode will return after all the sealed segments are loaded.
LoadSegments(ctx context.Context, req *querypb.LoadSegmentsRequest) (*commonpb.Status, error)
// ReleaseCollection notifies Proxy to release a collection's data
ReleaseCollection(ctx context.Context, req *querypb.ReleaseCollectionRequest) (*commonpb.Status, error)
ReleasePartitions(ctx context.Context, req *querypb.ReleasePartitionsRequest) (*commonpb.Status, error)
ReleaseSegments(ctx context.Context, req *querypb.ReleaseSegmentsRequest) (*commonpb.Status, error)