From 97fa55602bf9da768f0773442dc5db007a98a367 Mon Sep 17 00:00:00 2001 From: ryjiang Date: Fri, 29 Oct 2021 09:38:41 +0800 Subject: [PATCH] [skip ci]Add comments in chap07_query_coordinator.md (#10872) Signed-off-by: ruiyi.jiang --- docs/developer_guides/chap07_query_coordinator.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/developer_guides/chap07_query_coordinator.md b/docs/developer_guides/chap07_query_coordinator.md index 09fcb50cfa..ff63c8b685 100644 --- a/docs/developer_guides/chap07_query_coordinator.md +++ b/docs/developer_guides/chap07_query_coordinator.md @@ -13,6 +13,7 @@ type QueryCoord interface { // ShowCollections notifies RootCoord to list all collection names and other info in database at specified timestamp 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(ctx context.Context, req *querypb.ReleaseCollectionRequest) (*commonpb.Status, error) ShowPartitions(ctx context.Context, req *querypb.ShowPartitionsRequest) (*querypb.ShowPartitionsResponse, error)