]> granicus.if.org Git - postgresql/commit
Make commit_delay much smarter.
authorRobert Haas <rhaas@postgresql.org>
Mon, 2 Jul 2012 14:26:31 +0000 (10:26 -0400)
committerRobert Haas <rhaas@postgresql.org>
Mon, 2 Jul 2012 14:26:31 +0000 (10:26 -0400)
commitf11e8be3e812cdbbc139c1b4e49141378b118dee
tree162f29144f66e3bd9de31556170b0ece9be4cae0
parentf83b59997d29f06c3d67e7eb9a1f2c9cd017d665
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.
doc/src/sgml/config.sgml
doc/src/sgml/wal.sgml
src/backend/access/transam/xact.c
src/backend/access/transam/xlog.c