pgsql: Allow to trigger kernel writeback after a configurable number of - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: Allow to trigger kernel writeback after a configurable number of
Date
Msg-id E1aeBt7-0005jO-Id@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Allow to trigger kernel writeback after a configurable number of  (Andres Freund <andres@anarazel.de>)
List pgsql-committers
Allow to trigger kernel writeback after a configurable number of writes.

Currently writes to the main data files of postgres all go through the
OS page cache. This means that some operating systems can end up
collecting a large number of dirty buffers in their respective page
caches.  When these dirty buffers are flushed to storage rapidly, be it
because of fsync(), timeouts, or dirty ratios, latency for other reads
and writes can increase massively.  This is the primary reason for
regular massive stalls observed in real world scenarios and artificial
benchmarks; on rotating disks stalls on the order of hundreds of seconds
have been observed.

On linux it is possible to control this by reducing the global dirty
limits significantly, reducing the above problem. But global
configuration is rather problematic because it'll affect other
applications; also PostgreSQL itself doesn't always generally want this
behavior, e.g. for temporary files it's undesirable.

Several operating systems allow some control over the kernel page
cache. Linux has sync_file_range(2), several posix systems have msync(2)
and posix_fadvise(2). sync_file_range(2) is preferable because it
requires no special setup, whereas msync() requires the to-be-flushed
range to be mmap'ed. For the purpose of flushing dirty data
posix_fadvise(2) is the worst alternative, as flushing dirty data is
just a side-effect of POSIX_FADV_DONTNEED, which also removes the pages
from the page cache.  Thus the feature is enabled by default only on
linux, but can be enabled on all systems that have any of the above
APIs.

While desirable and likely possible this patch does not contain an
implementation for windows.

With the infrastructure added, writes made via checkpointer, bgwriter
and normal user backends can be flushed after a configurable number of
writes. Each of these sources of writes controlled by a separate GUC,
checkpointer_flush_after, bgwriter_flush_after and backend_flush_after
respectively; they're separate because the number of flushes that are
good are separate, and because the performance considerations of
controlled flushing for each of these are different.

A later patch will add checkpoint sorting - after that flushes from the
ckeckpoint will almost always be desirable. Bgwriter flushes are most of
the time going to be random, which are slow on lots of storage hardware.
Flushing in backends works well if the storage and bgwriter can keep up,
but if not it can have negative consequences.  This patch is likely to
have negative performance consequences without checkpoint sorting, but
unfortunately so has sorting without flush control.

Discussion: alpine.DEB.2.10.1506011320000.28433@sto
Author: Fabien Coelho and Andres Freund

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/428b1d6b29ca599c5700d4bc4f4ce4c5880369bf

Modified Files
--------------
doc/src/sgml/config.sgml              |  87 +++++++++++++++
doc/src/sgml/wal.sgml                 |  11 ++
src/backend/postmaster/bgwriter.c     |   8 +-
src/backend/storage/buffer/buf_init.c |   5 +
src/backend/storage/buffer/bufmgr.c   | 193 +++++++++++++++++++++++++++++++++-
src/backend/storage/file/copydir.c    |   4 +-
src/backend/storage/file/fd.c         | 157 +++++++++++++++++++++++----
src/backend/storage/smgr/md.c         |  50 +++++++++
src/backend/storage/smgr/smgr.c       |  19 +++-
src/backend/utils/misc/guc.c          |  36 +++++++
src/include/storage/buf_internals.h   |  31 +++++-
src/include/storage/bufmgr.h          |  22 +++-
src/include/storage/fd.h              |   3 +-
src/include/storage/smgr.h            |   4 +
src/tools/pgindent/typedefs.list      |   2 +
15 files changed, 601 insertions(+), 31 deletions(-)


pgsql-committers by date:

Previous
From: Amit Langote
Date:
Subject: Re: pgsql: Don't vacuum all-frozen pages.
Next
From: Andres Freund
Date:
Subject: pgsql: Checkpoint sorting and balancing.