pgsql: Skip WAL for new relfilenodes, under wal_level=minimal.

Поиск
Список
Период
Сортировка
От Noah Misch
Тема pgsql: Skip WAL for new relfilenodes, under wal_level=minimal.
Дата
Msg-id E1jFhG1-0000Vi-KM@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Skip WAL for new relfilenodes, under wal_level=minimal.

Until now, only selected bulk operations (e.g. COPY) did this.  If a
given relfilenode received both a WAL-skipping COPY and a WAL-logged
operation (e.g. INSERT), recovery could lose tuples from the COPY.  See
src/backend/access/transam/README section "Skipping WAL for New
RelFileNode" for the new coding rules.  Maintainers of table access
methods should examine that section.

To maintain data durability, just before commit, we choose between an
fsync of the relfilenode and copying its contents to WAL.  A new GUC,
wal_skip_threshold, guides that choice.  If this change slows a workload
that creates small, permanent relfilenodes under wal_level=minimal, try
adjusting wal_skip_threshold.  Users setting a timeout on COMMIT may
need to adjust that timeout, and log_min_duration_statement analysis
will reflect time consumption moving to COMMIT from commands like COPY.

Internally, this requires a reliable determination of whether
RollbackAndReleaseCurrentSubTransaction() would unlink a relation's
current relfilenode.  Introduce rd_firstRelfilenodeSubid.  Amend the
specification of rd_createSubid such that the field is zero when a new
rel has an old rd_node.  Make relcache.c retain entries for certain
dropped relations until end of transaction.

Back-patch to 9.5 (all supported versions).  This introduces a new WAL
record type, XLOG_GIST_ASSIGN_LSN, without bumping XLOG_PAGE_MAGIC.  As
always, update standby systems before master systems.  This changes
sizeof(RelationData) and sizeof(IndexStmt), breaking binary
compatibility for affected extensions.  (The most recent commit to
affect the same class of extensions was
089e4d405d0f3b94c74a2c6a54357a84a681754b.)

Kyotaro Horiguchi, reviewed (in earlier, similar versions) by Robert
Haas.  Heikki Linnakangas and Michael Paquier implemented earlier
designs that materially clarified the problem.  Reviewed, in earlier
designs, by Andrew Dunstan, Andres Freund, Alvaro Herrera, Tom Lane,
Fujii Masao, and Simon Riggs.  Reported by Martijn van Oosterhout.

Discussion: https://postgr.es/m/20150702220524.GA9392@svana.org

Branch
------
REL9_5_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/9db4b9da2801ed94c8f209c807e654c139dc1d7e

Modified Files
--------------
doc/src/sgml/config.sgml                      |  41 ++-
doc/src/sgml/perform.sgml                     |  43 +--
src/backend/access/gist/gistbuild.c           |   2 +-
src/backend/access/gist/gistutil.c            |  31 ++-
src/backend/access/gist/gistxlog.c            |  20 ++
src/backend/access/heap/heapam.c              |  30 +--
src/backend/access/heap/rewriteheap.c         |  21 +-
src/backend/access/nbtree/nbtsort.c           |  41 +--
src/backend/access/rmgrdesc/gistdesc.c        |   6 +
src/backend/access/transam/README             |  45 +++-
src/backend/access/transam/xact.c             |  15 ++
src/backend/access/transam/xlogutils.c        |  18 +-
src/backend/bootstrap/bootparse.y             |   4 +
src/backend/catalog/storage.c                 | 226 ++++++++++++++++
src/backend/commands/cluster.c                |  29 +-
src/backend/commands/copy.c                   |  52 +---
src/backend/commands/createas.c               |  15 +-
src/backend/commands/matview.c                |  16 +-
src/backend/commands/tablecmds.c              |  56 ++--
src/backend/nodes/copyfuncs.c                 |   2 +
src/backend/nodes/equalfuncs.c                |   2 +
src/backend/nodes/outfuncs.c                  |   2 +
src/backend/parser/gram.y                     |   4 +
src/backend/parser/parse_utilcmd.c            |   4 +
src/backend/storage/buffer/bufmgr.c           | 124 ++++++++-
src/backend/storage/lmgr/lock.c               |  12 +
src/backend/storage/smgr/md.c                 |  52 +++-
src/backend/storage/smgr/smgr.c               |  35 +++
src/backend/utils/cache/relcache.c            | 278 +++++++++++++++----
src/backend/utils/misc/guc.c                  |  12 +
src/backend/utils/misc/postgresql.conf.sample |   1 +
src/include/access/gist_private.h             |   3 +
src/include/access/heapam.h                   |   1 -
src/include/access/rewriteheap.h              |   2 +-
src/include/catalog/storage.h                 |   6 +
src/include/nodes/parsenodes.h                |   3 +
src/include/storage/bufmgr.h                  |   4 +
src/include/storage/lock.h                    |   3 +
src/include/storage/smgr.h                    |   1 +
src/include/utils/rel.h                       |  58 +++-
src/include/utils/relcache.h                  |   8 +-
src/test/recovery/t/018_wal_optimize.pl       | 372 ++++++++++++++++++++++++++
src/test/regress/expected/alter_table.out     |   6 +
src/test/regress/expected/create_table.out    |  13 +
src/test/regress/sql/alter_table.sql          |   7 +
src/test/regress/sql/create_table.sql         |  15 ++
46 files changed, 1417 insertions(+), 324 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Amit Kapila
Дата:
Сообщение: pgsql: Allow page lock to conflict among parallel group members.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: pgsql: Skip WAL for new relfilenodes, under wal_level=minimal.