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

Signed-off-by: ruiyi.jiang <ruiyi.jiang@zilliz.com>
pull/11835/head
ryjiang 2021-11-15 19:03:46 +08:00 committed by GitHub
parent afed687f19
commit 20810a335e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -257,6 +257,7 @@ type QueryNode interface {
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 gets the metrics about QueryNode.
GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error)
}
```