You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rowexec: manually flush progress when backfiling vector indexes
Previously, the vector index codepath in backfill took no special action
to update progress tracking. Since progress tracking uses BulkAdder
flushes to determine when to flush progress and vector indexes don't
currently use BulkAdders during backfill, this meant that vector index
build status never got updated.
This patch adds a manual flush of status whenever an IndexBatch
containing a vector index completes. Vector index inserts are pretty
slow and IndexBatches are pretty large, so this is unlikely to lead to too
many flushes.
Fixes: #146691
Release note (bug fix): Vector index backfill will now properly track job
progress in SHOW JOBS output.
0 commit comments