From ffaead6ad972ba9592ed06330b197cbd3134f2c8 Mon Sep 17 00:00:00 2001 From: Bingyi Sun Date: Tue, 24 May 2022 18:24:00 +0800 Subject: [PATCH] Add load meta in hand off task. (#17179) issue: #16842 Signed-off-by: sunby Co-authored-by: sunby --- internal/querycoord/task.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/querycoord/task.go b/internal/querycoord/task.go index e2c78138b8..217f3c53c4 100644 --- a/internal/querycoord/task.go +++ b/internal/querycoord/task.go @@ -1750,6 +1750,10 @@ func (ht *handoffTask) execute(ctx context.Context) error { Infos: []*querypb.SegmentLoadInfo{segmentLoadInfo}, Schema: collectionInfo.Schema, CollectionID: collectionID, + LoadMeta: &querypb.LoadMetaInfo{ + CollectionID: collectionID, + PartitionIDs: collectionInfo.PartitionIDs, + }, } } }