From 6fd3b376e9cccc1d5219a6b5fe4cb5e0f202ee77 Mon Sep 17 00:00:00 2001 From: shaoyue Date: Mon, 15 Nov 2021 19:15:56 +0800 Subject: [PATCH] [skip ci] Add comment for export method in DataNode.Compaction (#11794) Signed-off-by: shaoyue.chen --- internal/types/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/types/types.go b/internal/types/types.go index faddca3cc4..022a875d29 100644 --- a/internal/types/types.go +++ b/internal/types/types.go @@ -58,7 +58,7 @@ type DataNode interface { // GetMetrics gets the metrics about DataNode. GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) - + // Compaction will add a compaction task according to the request plan Compaction(ctx context.Context, req *datapb.CompactionPlan) (*commonpb.Status, error) }