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

Signed-off-by: ruiyi.jiang <ruiyi.jiang@zilliz.com>
pull/10875/merge
ryjiang 2021-11-01 16:28:14 +08:00 committed by GitHub
parent c9ce24b496
commit c24ae56e2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ type QueryCoord interface {
ShowCollections(ctx context.Context, req *querypb.ShowCollectionsRequest) (*querypb.ShowCollectionsResponse, error)
// LoadCollection notifies Proxy to load a collection's data
LoadCollection(ctx context.Context, req *querypb.LoadCollectionRequest) (*commonpb.Status, error)
// ReleaseCollection notifies Proxy to release a collection's data
ReleaseCollection(ctx context.Context, req *querypb.ReleaseCollectionRequest) (*commonpb.Status, error)
ShowPartitions(ctx context.Context, req *querypb.ShowPartitionsRequest) (*querypb.ShowPartitionsResponse, error)
LoadPartitions(ctx context.Context, req *querypb.LoadPartitionsRequest) (*commonpb.Status, error)