From a8a1b0b3e8519b8c3c8f611e26e3db05c17d62aa Mon Sep 17 00:00:00 2001 From: jaime Date: Tue, 27 Dec 2022 12:49:29 +0800 Subject: [PATCH] Remove logs that print insert results (#21394) Signed-off-by: jaime --- internal/proxy/impl.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/proxy/impl.go b/internal/proxy/impl.go index 09abe99f45..354a9563b0 100644 --- a/internal/proxy/impl.go +++ b/internal/proxy/impl.go @@ -2125,7 +2125,6 @@ func (node *Proxy) Insert(ctx context.Context, request *milvuspb.InsertRequest) metrics.ProxyInsertVectors.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10)).Add(float64(successCnt)) metrics.ProxyMutationLatency.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10), metrics.InsertLabel).Observe(float64(tr.ElapseSpan().Milliseconds())) metrics.ProxyCollectionMutationLatency.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10), metrics.InsertLabel, request.CollectionName).Observe(float64(tr.ElapseSpan().Milliseconds())) - log.Debug("lxg debug", zap.Any("insertResult", it.result)) return it.result, nil }