pgsql: Do not decode TOAST data for table rewrites

Поиск
Список
Период
Сортировка
От Tomas Vondra
Тема pgsql: Do not decode TOAST data for table rewrites
Дата
Msg-id E1gRoGh-0002Z1-On@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Do not decode TOAST data for table rewrites

During table rewrites (VACUUM FULL and CLUSTER), the main heap is logged
using XLOG / FPI records, and thus (correctly) ignored in decoding.
But the associated TOAST table is WAL-logged as plain INSERT records,
and so was logically decoded and passed to reorder buffer.

That has severe consequences with TOAST tables of non-trivial size.
Firstly, reorder buffer has to keep all those changes, possibly spilling
them to a file, incurring I/O costs and disk space.

Secondly, ReoderBufferCommit() was stashing all those TOAST chunks into
a hash table, which got discarded only after processing the row from the
main heap.  But as the main heap is not decoded for rewrites, this never
happened, so all the TOAST data accumulated in memory, resulting either
in excessive memory consumption or OOM.

The fix is simple, as commit e9edc1ba already introduced infrastructure
(namely HEAP_INSERT_NO_LOGICAL flag) to skip logical decoding of TOAST
tables, but it only applied it to system tables.  So simply use it for
all TOAST data in raw_heap_insert().

That would however solve only the memory consumption issue - the TOAST
changes would still be decoded and added to the reorder buffer, and
spilled to disk (although without TOAST tuple data, so much smaller).
But we can solve that by tweaking DecodeInsert() to just ignore such
INSERT records altogether, using XLH_INSERT_CONTAINS_NEW_TUPLE flag,
instead of skipping them later in ReorderBufferCommit().

Review: Masahiko Sawada
Discussion: https://www.postgresql.org/message-id/flat/1a17c643-e9af-3dba-486b-fbe31bc1823a%402ndquadrant.com
Backpatch: 9.4-, where logical decoding was introduced

Branch
------
REL_10_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/4e7395d83faf02d0b64b1da69d0c1be53b76f802

Modified Files
--------------
src/backend/access/heap/rewriteheap.c           |  9 ++++-----
src/backend/replication/logical/decode.c        | 24 +++++++++++++++---------
src/backend/replication/logical/reorderbuffer.c | 15 +++++----------
3 files changed, 24 insertions(+), 24 deletions(-)


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

Предыдущее
От: Tomas Vondra
Дата:
Сообщение: pgsql: Do not decode TOAST data for table rewrites
Следующее
От: Tomas Vondra
Дата:
Сообщение: pgsql: Do not decode TOAST data for table rewrites