git.postgresql.org Git - postgresql.git/commit

git projects / postgresql.git / commit
? search:
summary | shortlog | log | commit | commitdiff | tree
(parent: 39b0369) | patch
Pass down "logically unchanged index" hint.
2021年1月13日 16:11:00 +0000 (08:11 -0800)
2021年1月13日 16:11:00 +0000 (08:11 -0800)
commit 9dc718bdf2b1a574481a45624d42b674332e2903
Pass down "logically unchanged index" hint.

Add an executor aminsert() hint mechanism that informs index AMs that
the incoming index tuple (the tuple that accompanies the hint) is not
being inserted by execution of an SQL statement that logically modifies
any of the index's key columns.

The hint is received by indexes when an UPDATE takes place that does not
apply an optimization like heapam's HOT (though only for indexes where
all key columns are logically unchanged). Any index tuple that receives
the hint on insert is expected to be a duplicate of at least one
existing older version that is needed for the same logical row. Related
versions will typically be stored on the same index page, at least
within index AMs that apply the hint.

Recognizing the difference between MVCC version churn duplicates and
true logical row duplicates at the index AM level can help with cleanup
of garbage index tuples. Cleanup can intelligently target tuples that
are likely to be garbage, without wasting too many cycles on less
promising tuples/pages (index pages with little or no version churn).

This is infrastructure for an upcoming commit that will teach nbtree to
perform bottom-up index deletion. No index AM actually applies the hint
just yet.

Author: Peter Geoghegan <pg@bowt.ie>
Reviewed-By: Victor Yegorov <vyegorov@gmail.com>
Discussion: https://postgr.es/m/CAH2-Wz=CEKFa74EScx_hFVshCOn6AA5T-ajFASTdzipdkLTNQQ@mail.gmail.com
31 files changed:
contrib/bloom/blinsert.c diff | blob | blame | history
contrib/bloom/bloom.h diff | blob | blame | history
doc/src/sgml/indexam.sgml diff | blob | blame | history
src/backend/access/brin/brin.c diff | blob | blame | history
src/backend/access/common/toast_internals.c diff | blob | blame | history
src/backend/access/gin/gininsert.c diff | blob | blame | history
src/backend/access/gist/gist.c diff | blob | blame | history
src/backend/access/hash/hash.c diff | blob | blame | history
src/backend/access/heap/heapam_handler.c diff | blob | blame | history
src/backend/access/index/indexam.c diff | blob | blame | history
src/backend/access/nbtree/nbtree.c diff | blob | blame | history
src/backend/access/spgist/spginsert.c diff | blob | blame | history
src/backend/catalog/indexing.c diff | blob | blame | history
src/backend/commands/constraint.c diff | blob | blame | history
src/backend/commands/copyfrom.c diff | blob | blame | history
src/backend/commands/trigger.c diff | blob | blame | history
src/backend/executor/execIndexing.c diff | blob | blame | history
src/backend/executor/execMain.c diff | blob | blame | history
src/backend/executor/execReplication.c diff | blob | blame | history
src/backend/executor/nodeModifyTable.c diff | blob | blame | history
src/backend/replication/logical/worker.c diff | blob | blame | history
src/include/access/amapi.h diff | blob | blame | history
src/include/access/brin_internal.h diff | blob | blame | history
src/include/access/genam.h diff | blob | blame | history
src/include/access/gin_private.h diff | blob | blame | history
src/include/access/gist_private.h diff | blob | blame | history
src/include/access/hash.h diff | blob | blame | history
src/include/access/nbtree.h diff | blob | blame | history
src/include/access/spgist.h diff | blob | blame | history
src/include/executor/executor.h diff | blob | blame | history
src/test/modules/dummy_index_am/dummy_index_am.c diff | blob | blame | history
This is the main PostgreSQL git repository.
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /