From 6149d53e511e2617c05583e73dda8f953b05964f Mon Sep 17 00:00:00 2001 From: ryjiang Date: Tue, 2 Nov 2021 21:22:57 +0800 Subject: [PATCH] [skip ci]Add comments in chap07_query_coordinator.md (#11054) 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 1b3a6a6df7..ab29797fc2 100644 --- a/docs/developer_guides/chap07_query_coordinator.md +++ b/docs/developer_guides/chap07_query_coordinator.md @@ -17,6 +17,7 @@ type QueryCoord interface { 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 notifies RootCoord to list all partition names and other info in the collection ShowPartitions(ctx context.Context, req *querypb.ShowPartitionsRequest) (*querypb.ShowPartitionsResponse, error) LoadPartitions(ctx context.Context, req *querypb.LoadPartitionsRequest) (*commonpb.Status, error) ReleasePartitions(ctx context.Context, req *querypb.ReleasePartitionsRequest) (*commonpb.Status, error)