pgsql: Add VACUUM/ANALYZE BUFFER_USAGE_LIMIT option

From: David Rowley <drowley(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add VACUUM/ANALYZE BUFFER_USAGE_LIMIT option
Date: 2023-04-06 23:41:14
Message-ID: E1pkZE9-001lHb-Cm@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add VACUUM/ANALYZE BUFFER_USAGE_LIMIT option

Add new options to the VACUUM and ANALYZE commands called
BUFFER_USAGE_LIMIT to allow users more control over how large to make the
buffer access strategy that is used to limit the usage of buffers in
shared buffers. Larger rings can allow VACUUM to run more quickly but
have the drawback of VACUUM possibly evicting more buffers from shared
buffers that might be useful for other queries running on the database.

Here we also add a new GUC named vacuum_buffer_usage_limit which controls
how large to make the access strategy when it's not specified in the
VACUUM/ANALYZE command. This defaults to 256KB, which is the same size as
the access strategy was prior to this change. This setting also
controls how large to make the buffer access strategy for autovacuum.

Per idea by Andres Freund.

Author: Melanie Plageman
Reviewed-by: David Rowley
Reviewed-by: Andres Freund
Reviewed-by: Justin Pryzby
Reviewed-by: Bharath Rupireddy
Discussion: https://postgr.es/m/20230111182720.ejifsclfwymw2reb@awork3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/1cbbee03385763b066ae3961fc61f2cd01a0d0d7

Modified Files
--------------
doc/src/sgml/config.sgml | 30 +++++++++
doc/src/sgml/ref/analyze.sgml | 20 ++++++
doc/src/sgml/ref/vacuum.sgml | 24 +++++++
src/backend/commands/vacuum.c | 95 ++++++++++++++++++++++++++-
src/backend/commands/vacuumparallel.c | 14 +++-
src/backend/postmaster/autovacuum.c | 18 +++--
src/backend/storage/buffer/README | 12 ++--
src/backend/storage/buffer/freelist.c | 61 ++++++++++++++---
src/backend/utils/init/globals.c | 5 +-
src/backend/utils/misc/guc_tables.c | 11 ++++
src/backend/utils/misc/postgresql.conf.sample | 3 +
src/bin/psql/tab-complete.c | 4 +-
src/include/miscadmin.h | 9 +++
src/include/storage/bufmgr.h | 5 ++
src/include/utils/guc_hooks.h | 2 +
src/test/regress/expected/vacuum.out | 19 ++++++
src/test/regress/sql/vacuum.sql | 15 +++++
17 files changed, 322 insertions(+), 25 deletions(-)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2023-04-07 00:01:41 pgsql: hio: Use ExtendBufferedRelBy() to extend tables more efficiently
Previous Message Andres Freund 2023-04-06 23:20:20 pgsql: heapam: Pass number of required pages to RelationGetBufferForTup