From 9e67c192f2f628fec7389e2e4fa862dc58dde7a6 Mon Sep 17 00:00:00 2001 From: ryjiang Date: Fri, 12 Nov 2021 13:23:46 +0800 Subject: [PATCH] [skip ci]Add comments in chap07_query_coordinator.md (#11696) 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 c166fb2eb4..592b21435c 100644 --- a/docs/developer_guides/chap07_query_coordinator.md +++ b/docs/developer_guides/chap07_query_coordinator.md @@ -255,6 +255,7 @@ type QueryNode interface { ReleasePartitions(ctx context.Context, req *querypb.ReleasePartitionsRequest) (*commonpb.Status, error) // ReleaseSegments releases the data of the specified segments in QueryNode. ReleaseSegments(ctx context.Context, req *querypb.ReleaseSegmentsRequest) (*commonpb.Status, error) + // GetSegmentInfo requests segment info GetSegmentInfo(ctx context.Context, req *querypb.GetSegmentInfoRequest) (*querypb.GetSegmentInfoResponse, error) GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error) }