From 6a15a0806061168c59ac3bd33856a4a67fde202f Mon Sep 17 00:00:00 2001 From: congqixia Date: Fri, 19 Dec 2025 22:21:19 +0800 Subject: [PATCH] fix: set ManifestPath in GetRecoveryInfoV2 response (#46470) Add ManifestPath field to SegmentInfo in GetRecoveryInfoV2 response, enabling QueryCoord to detect manifest path changes and trigger segment reopen for storage v2 incremental updates. Related to #46394 Signed-off-by: Congqi Xia --- internal/datacoord/services.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/datacoord/services.go b/internal/datacoord/services.go index 98233a9cab..0864745490 100644 --- a/internal/datacoord/services.go +++ b/internal/datacoord/services.go @@ -1046,6 +1046,7 @@ func (s *Server) GetRecoveryInfoV2(ctx context.Context, req *datapb.GetRecoveryI NumOfRows: rowCount, Level: segment.GetLevel(), IsSorted: segment.GetIsSorted(), + ManifestPath: segment.GetManifestPath(), }) }