From 77aa42905baef2ef0df9401cddb931914344d55d Mon Sep 17 00:00:00 2001 From: ryjiang Date: Fri, 5 Nov 2021 13:17:59 +0800 Subject: [PATCH] [skip ci]Add comments in chap07_query_coordinator.md (#11287) 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 2fd3498769..8f05dcacf8 100644 --- a/docs/developer_guides/chap07_query_coordinator.md +++ b/docs/developer_guides/chap07_query_coordinator.md @@ -25,6 +25,7 @@ type QueryCoord interface { ReleasePartitions(ctx context.Context, req *querypb.ReleasePartitionsRequest) (*commonpb.Status, error) CreateQueryChannel(ctx context.Context) (*querypb.CreateQueryChannelResponse, error) GetPartitionStates(ctx context.Context, req *querypb.GetPartitionStatesRequest) (*querypb.GetPartitionStatesResponse, error) + // GetSegmentInfo requests segment info GetSegmentInfo(ctx context.Context, req *querypb.GetSegmentInfoRequest) (*querypb.GetSegmentInfoResponse, error) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) }