chore(deps): update dependency gburd/pg_fts to v1.1.2 #24
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.1→1.1.2Release Notes
gburd/pg_fts (gburd/pg_fts)
v1.1.2Compare Source
Bug-fix release. No on-disk format change from 1.1.1; no REINDEX
required (
ALTER EXTENSION pg_fts UPDATE TO '1.1.2').CREATE INDEX CONCURRENTLY.On a large, high-vocabulary corpus, a build could get all the way through the
merge (the 1.1.1 fix) and then wedge in finalization -- the build leader
parked waiting on parallel workers while another backend blocked on the
relation-extension lock, with the index never becoming valid. The build
finalization started a second parallel worker set to merge the segments; on a
large index under
CONCURRENTLYon a busy host, the participants couldcontend on the relation-extension lock and stall indefinitely. Finalization is
now serial (the 1.1.1 O(N) merge made the parallel pass unnecessary for
convergence), so no relation-extension contention arises and the build
completes.
fts_merge()still merges in parallel when run on its own.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.