pgsql: Make commit_delay much smarter. - Mailing list pgsql-committers

From Robert Haas
Subject pgsql: Make commit_delay much smarter.
Date
Msg-id E1Slhel-0006M4-SJ@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Make commit_delay much smarter.

Instead of letting every backend participating in a group commit wait
independently, have the first one that becomes ready to flush WAL wait
for the configured delay, and let all the others wait just long enough
for that first process to complete its flush.  This greatly increases
the chances of being able to configure a commit_delay setting that
actually improves performance.

As a side consequence of this change, commit_delay now affects all WAL
flushes, rather than just commits.  There was some discussion on
pgsql-hackers about whether to rename the GUC to, say, wal_flush_delay,
but in the absence of consensus I am leaving it alone for now.

Peter Geoghegan, with some changes, mostly to the documentation, by me.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/f11e8be3e812cdbbc139c1b4e49141378b118dee

Modified Files
--------------
doc/src/sgml/config.sgml          |   35 ++++++++++++----------
doc/src/sgml/wal.sgml             |    4 +--
src/backend/access/transam/xact.c |   19 ------------
src/backend/access/transam/xlog.c |   59 +++++++++++++++++++++++-------------
4 files changed, 58 insertions(+), 59 deletions(-)


pgsql-committers by date:

Previous
From: Robert Haas
Date:
Subject: pgsql: Make walsender more responsive.
Next
From: Tom Lane
Date:
Subject: Re: pgsql: Make walsender more responsive.