From 4c6de1c2d12dd16a0555cb65452a59c41b6dc0f3 Mon Sep 17 00:00:00 2001 From: ryjiang Date: Tue, 2 Nov 2021 21:30:19 +0800 Subject: [PATCH] [skip ci]Add comments in chap03_index_service.md (#11056) 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 57d6b24e59..63bdb3bdae 100644 --- a/docs/developer_guides/chap03_index_service.md +++ b/docs/developer_guides/chap03_index_service.md @@ -11,6 +11,7 @@ type IndexCoord interface { Component TimeTickProvider + // BuildIndex receives request from RootCoordinator to build an index. BuildIndex(ctx context.Context, req *indexpb.BuildIndexRequest) (*indexpb.BuildIndexResponse, error) DropIndex(ctx context.Context, req *indexpb.DropIndexRequest) (*commonpb.Status, error) GetIndexStates(ctx context.Context, req *indexpb.GetIndexStatesRequest) (*indexpb.GetIndexStatesResponse, error)