pgsql: Change the format of the VM fork to add a second bit per page.

Поиск
Список
Период
Сортировка
От Robert Haas
Тема pgsql: Change the format of the VM fork to add a second bit per page.
Дата
Msg-id E1aawtF-0000Tn-G0@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Change the format of the VM fork to add a second bit per page.

The new bit indicates whether every tuple on the page is already frozen.
It is cleared only when the all-visible bit is cleared, and it can be
set only when we vacuum a page and find that every tuple on that page is
both visible to every transaction and in no need of any future
vacuuming.

A future commit will use this new bit to optimize away full-table scans
that would otherwise be triggered by XID wraparound considerations.  A
page which is merely all-visible must still be scanned in that case, but
a page which is all-frozen need not be.  This commit does not attempt
that optimization, although that optimization is the goal here.  It
seems better to get the basic infrastructure in place first.

Per discussion, it's very desirable for pg_upgrade to automatically
migrate existing VM forks from the old format to the new format.  That,
too, will be handled in a follow-on patch.

Masahiko Sawada, reviewed by Kyotaro Horiguchi, Fujii Masao, Amit
Kapila, Simon Riggs, Andres Freund, and others, and substantially
revised by me.

Branch
------
master

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

Modified Files
--------------
contrib/pgstattuple/pgstatapprox.c       |   2 +-
doc/src/sgml/storage.sgml                |  10 +-
src/backend/access/heap/heapam.c         |  61 +++++++++-
src/backend/access/heap/visibilitymap.c  | 191 ++++++++++++++++++-------------
src/backend/catalog/index.c              |   2 +-
src/backend/commands/analyze.c           |   8 +-
src/backend/commands/vacuumlazy.c        | 103 ++++++++++++++---
src/backend/executor/nodeIndexonlyscan.c |  12 +-
src/backend/storage/ipc/standby.c        |   6 +-
src/include/access/heapam.h              |   1 +
src/include/access/heapam_xlog.h         |   5 +-
src/include/access/visibilitymap.h       |  21 +++-
src/include/catalog/catversion.h         |   2 +-
src/include/storage/bufpage.h            |  11 +-
14 files changed, 309 insertions(+), 126 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Improve coverage of pltcl regression tests.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix TAP tests for older Perls.