From 5439280206fd7b177f7cbb4ee7ad424bdf4916b5 Mon Sep 17 00:00:00 2001 From: ryjiang Date: Mon, 8 Nov 2021 13:07:33 +0800 Subject: [PATCH] [skip ci]Add comments in chap03_index_service.md (#11398) Signed-off-by: ruiyi.jiang --- docs/developer_guides/chap03_index_service.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/developer_guides/chap03_index_service.md b/docs/developer_guides/chap03_index_service.md index 1911ec5e87..d6228dc7e3 100644 --- a/docs/developer_guides/chap03_index_service.md +++ b/docs/developer_guides/chap03_index_service.md @@ -19,6 +19,7 @@ type IndexCoord interface { DropIndex(ctx context.Context, req *indexpb.DropIndexRequest) (*commonpb.Status, error) // GetIndexStates gets the index states of the IndexBuildIDs in the request from RootCoordinator. GetIndexStates(ctx context.Context, req *indexpb.GetIndexStatesRequest) (*indexpb.GetIndexStatesResponse, error) + // GetIndexFilePaths gets the index files of the IndexBuildIDs in the request from RootCoordinator. GetIndexFilePaths(ctx context.Context, req *indexpb.GetIndexFilePathsRequest) (*indexpb.GetIndexFilePathsResponse, error) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) }