diff options
author | Bruce Momjian | 2024-05-16 02:47:59 +0000 |
---|---|---|
committer | Bruce Momjian | 2024-05-16 02:48:19 +0000 |
commit | a8010d03e1f30c657b6c868fa857c7b8b53c3fbc (patch) | |
tree | de919ced36f400a82a80db4ffc3eeabf07c87328 | |
parent | 4dd29b683334739168f60df520dcc9218b6fead7 (diff) |
doc PG 17 relnotes: add item about vacuum storage/limits/WAL
Reported-by: Alvaro Herrera
Discussion: https://postgr.es/m/[email protected]
Backpatch-through: master
-rw-r--r-- | doc/src/sgml/release-17.sgml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/src/sgml/release-17.sgml b/doc/src/sgml/release-17.sgml index e68c499e0db..7f36a35954d 100644 --- a/doc/src/sgml/release-17.sgml +++ b/doc/src/sgml/release-17.sgml @@ -520,6 +520,25 @@ Allow vacuum to more efficiently remove and freeze tuples (Masahiko Sawada, John </listitem> <!-- +Author: Masahiko Sawada <[email protected]> +2024-03-21 [30e144287] Add TIDStore, to store sets of TIDs (ItemPointerData) ef +Author: Masahiko Sawada <[email protected]> +2024-04-02 [667e65aac] Use TidStore for dead tuple TIDs storage during lazy vac +Author: Heikki Linnakangas <[email protected]> +2024-04-03 [6dbb49026] Combine freezing and pruning steps in VACUUM +--> + +<listitem> +<para> +Allow vacuum to more efficiently store tuple references and remove its memory limit (Masahiko Sawada, John Naylor) +</para> + +<para> +Specifically, maintenance_work_mem and autovacuum_work_mem can now be configured to use more than one gigabyte of memory. WAL traffic caused by vacuum is also more compact. +</para> +</listitem> + +<!-- Author: Robert Haas <[email protected]> 2024-01-18 [c120550ed] Optimize vacuuming of relations with no indexes. --> |