mirror of https://github.com/milvus-io/milvus.git
[skip e2e]Add log for HasSameReq in indexcoord (#14233)
Signed-off-by: Cai.Zhang <cai.zhang@zilliz.com>pull/14248/head
parent
8e2e9c3735
commit
df82dcc783
|
@ -436,6 +436,9 @@ func (mt *metaTable) HasSameReq(req *indexpb.BuildIndexRequest) (bool, UniqueID)
|
|||
mt.lock.Lock()
|
||||
defer mt.lock.Unlock()
|
||||
|
||||
log.Debug("IndexCoord judges whether the same task exists in meta table", zap.Int64("indexBuildID", req.IndexBuildID),
|
||||
zap.Int64("indexID", req.IndexID), zap.Any("index params", req.IndexParams),
|
||||
zap.Any("type params", req.TypeParams))
|
||||
for _, meta := range mt.indexBuildID2Meta {
|
||||
if meta.indexMeta.Req.IndexID != req.IndexID {
|
||||
continue
|
||||
|
|
Loading…
Reference in New Issue