mirror of https://github.com/milvus-io/milvus.git
Reduce some logs level which is frequent (#20894)
Signed-off-by: cai.zhang <cai.zhang@zilliz.com> Signed-off-by: cai.zhang <cai.zhang@zilliz.com>pull/20891/head
parent
060649b8aa
commit
83244afcf3
|
@ -75,7 +75,7 @@ func (dn *deleteNode) Operate(in []Msg) []Msg {
|
|||
}
|
||||
|
||||
if len(in) != 1 {
|
||||
log.Error("Invalid operate message input in deleteNode", zap.Int("input length", len(in)))
|
||||
log.Warn("Invalid operate message input in deleteNode", zap.Int("input length", len(in)))
|
||||
return []Msg{}
|
||||
}
|
||||
|
||||
|
|
|
@ -991,7 +991,7 @@ func (i *IndexCoord) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsReq
|
|||
if err == nil && ret != nil {
|
||||
return ret, nil
|
||||
}
|
||||
log.Error("failed to get system info metrics from cache, recompute instead",
|
||||
log.Warn("failed to get system info metrics from cache, recompute instead",
|
||||
zap.Error(err))
|
||||
|
||||
metrics, err := getSystemInfoMetrics(ctx, req, i)
|
||||
|
|
|
@ -987,7 +987,7 @@ func (sc *ShardCluster) Search(ctx context.Context, req *querypb.SearchRequest,
|
|||
|
||||
wg.Wait()
|
||||
if err != nil {
|
||||
log.Error("failed to do search",
|
||||
log.Warn("failed to do search",
|
||||
zap.Int64("sourceID", req.GetReq().GetBase().GetSourceID()),
|
||||
zap.Strings("channels", req.GetDmlChannels()),
|
||||
zap.Int64s("segmentIDs", req.GetSegmentIDs()),
|
||||
|
|
Loading…
Reference in New Issue