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 <congqi.xia@zilliz.com>
This commit is contained in:
congqixia 2025-12-19 22:21:19 +08:00 committed by GitHub
parent 0507db2015
commit 6a15a08060
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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(),
})
}