From 8a458b7a38f25cd321b237dac2edb9c8629b1093 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Tue, 14 Sep 2021 10:27:06 +0800 Subject: [PATCH] Add log for building index about num rows (#7811) Signed-off-by: cai.zhang --- internal/rootcoord/root_coord.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/rootcoord/root_coord.go b/internal/rootcoord/root_coord.go index 62db109877..bdbf0c121d 100644 --- a/internal/rootcoord/root_coord.go +++ b/internal/rootcoord/root_coord.go @@ -840,8 +840,7 @@ func (c *Core) BuildIndex(ctx context.Context, segID typeutil.UniqueID, field *s } } log.Debug("build index", zap.String("index name", idxInfo.IndexName), - zap.String("field name", field.Name), - zap.Int64("segment id", segID)) + zap.String("field name", field.Name), zap.Int64("segment id", segID), zap.Int64("num rows", rows)) return bldID, nil }