Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

pgsql: Allow BufferAccessStrategy to limit pin count. - Mailing list pgsql-committers

From Thomas Munro
Subject pgsql: Allow BufferAccessStrategy to limit pin count.
Date
Msg-id E1rt32X-000nK8-LG@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Allow BufferAccessStrategy to limit pin count.

While pinning extra buffers to look ahead, users of strategies are in
danger of using too many buffers.  For some strategies, that means
"escaping" from the ring, and in others it means forcing dirty data to
disk very frequently with associated WAL flushing.  Since external code
has no insight into any of that, allow individual strategy types to
expose a clamp that should be applied when deciding how many buffers to
pin at once.

Reviewed-by: Andres Freund <andres@anarazel.de>
Reviewed-by: Melanie Plageman <melanieplageman@gmail.com>
Discussion: https://postgr.es/m/CAAKRu_aJXnqsyZt6HwFLnxYEBgE17oypkxbKbT1t1geE_wvH2Q%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3bd8439ed628c7e9ac250b1a042d9044303c37e7

Modified Files
--------------
src/backend/storage/aio/read_stream.c |  5 +++++
src/backend/storage/buffer/freelist.c | 42 +++++++++++++++++++++++++++++++++++
src/include/storage/bufmgr.h          |  1 +
3 files changed, 48 insertions(+)


pgsql-committers by date:

Previous
From: John Naylor
Date:
Subject: pgsql: Convert uses of hash_string_pointer to fasthash equivalent
Next
From: John Naylor
Date:
Subject: pgsql: Speed up tail processing when hashing aligned C strings, take tw