mirror of https://github.com/milvus-io/milvus.git
Add IndexCoord implementation Assertion (#9203)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/9214/head
parent
3939197d79
commit
9b65aad4cf
|
@ -44,6 +44,9 @@ import (
|
|||
"github.com/milvus-io/milvus/internal/util/typeutil"
|
||||
)
|
||||
|
||||
// make sure IndexCoord implements types.IndexCoord
|
||||
var _ types.IndexCoord = (*IndexCoord)(nil)
|
||||
|
||||
// IndexCoord is a component responsible for scheduling index construction tasks and maintaining index status.
|
||||
// IndexCoord accepts requests from rootcoord to build indexes, delete indexes, and query index information.
|
||||
// IndexCoord is responsible for assigning IndexBuildID to the request to build the index, and forwarding the
|
||||
|
|
Loading…
Reference in New Issue