[skip ci]Update typos in index service md (#11306)

Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
pull/11318/head^2
yanliang567 2021-11-05 15:05:04 +08:00 committed by GitHub
parent b608360ad0
commit 747e29b9e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ type IndexCoord interface {
Component
TimeTickProvider
// BuildIndex receives request from RootCoordinator to build an index.
// BuildIndex receives requests from RootCoordinator to build an index.
BuildIndex(ctx context.Context, req *indexpb.BuildIndexRequest) (*indexpb.BuildIndexResponse, error)
// DropIndex deletes indexes based on IndexID. One IndexID corresponds to the index of an entire column. A column is
// divided into many segments, and each segment corresponds to an IndexBuildID. IndexCoord uses IndexBuildID to record
@ -154,7 +154,7 @@ type IndexNode interface {
Component
TimeTickProvider
// CreateIndex receives request from IndexCoordinator to build an index.
// CreateIndex receives requests from IndexCoordinator to build an index.
// Index building is asynchronous, so when an index building request comes, IndexNode records the task and returns.
BuildIndex(ctx context.Context, req *indexpb.BuildIndexRequest) (*commonpb.Status, error)
// GetMetrics gets the metrics about IndexNode.