chore(deps): update dependency gburd/pg_fts to v1.1.1 #23
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "renovate/gburd-pg_fts-1.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
1.1.0→1.1.1Release Notes
gburd/pg_fts (gburd/pg_fts)
v1.1.1Compare Source
Bug-fix release. No on-disk format change from 1.1.0; no REINDEX
required (
ALTER EXTENSION pg_fts UPDATE TO '1.1.1').VACUUM/ bulk-delete on a large index.1.1.0 fixed the same pattern in the build's trigram writer; three more
instances remained on the delete/vacuum path (building a segment's live-docid
set and the tombstone sets one member at a time re-walked the sparsemap from
the start on every insert). Harmless on a small index, but on a large index
a
VACUUMor a largeDELETEcould spend a very long time in tombstoneconstruction — the same "time explodes at scale" behavior the build had.
All corpus-scale sparsemap builds now use the bulk O(N) path. Tombstone
results are unchanged (verified against a delete +
VACUUMcycle).(the final single-segment collapse is a single-backend pass over the whole
index, so budget it in a maintenance window or leave the index tiered), and
noted that
fts_index_stats()(likefts_index_nsegments()) can be polled onan in-progress index.
Configuration
📅 Schedule: (in timezone Europe/Paris)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate.