From 183d8cdfcf4e42e4b94e40bd9bff8e6cec292cf1 Mon Sep 17 00:00:00 2001 From: ryjiang Date: Fri, 12 Nov 2021 13:25:47 +0800 Subject: [PATCH] [skip ci]Add comments in chap09_data_coord.md (#11697) Signed-off-by: ruiyi.jiang --- docs/developer_guides/chap09_data_coord.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/developer_guides/chap09_data_coord.md b/docs/developer_guides/chap09_data_coord.md index 85060376e3..4425c4b3b6 100644 --- a/docs/developer_guides/chap09_data_coord.md +++ b/docs/developer_guides/chap09_data_coord.md @@ -282,6 +282,10 @@ type DataNode interface { WatchDmChannels(ctx context.Context, req *datapb.WatchDmChannelsRequest) (*commonpb.Status, error) FlushSegments(ctx context.Context, req *datapb.FlushSegmentsRequest) (*commonpb.Status, error) + // GetMetrics gets the metrics about DataNode. + GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) + + Compaction(ctx context.Context, req *datapb.CompactionPlan) (*commonpb.Status, error) } ```