pgsql: Revert "Add single-item cache when looking at topmost XID of a s

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Revert "Add single-item cache when looking at topmost XID of a s
Дата
Msg-id E1nupow-001VdA-M4@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Revert "Add single-item cache when looking at topmost XID of a subtrans XID"

This reverts commit 06f5295 as per issues with this approach, both in
terms of efficiency impact and stability.  First, contrary to the
single-item cache for transaction IDs in transam.c, the cache may finish
by not be hit for a long time, and without an invalidation mechanism to
clear it, it would cause inconsistent results on wraparound for
example.  Second, the use of SubTransGetTopmostTransaction() for the
caching has a limited impact on performance.  SubTransGetParent() could
have more impact, though the benchmarking of the single-item approach
still needs to be proved, particularly under the conditions where SLRU
lookups are stressed in parallel with overflowed snapshots (aka more
than 64 subxids generated, for example).

After discussion with Andres Freund.

Discussion: https://postgr.es/m/20220524235250.gtt3uu5zktfkr4hv@alap3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b4529005fd387e863bfa9eb863629b1183c0449c

Modified Files
--------------
src/backend/access/transam/subtrans.c | 18 ------------------
1 file changed, 18 deletions(-)


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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: Handle NULL for short descriptions of custom GUC variables
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Align stats_fetch_consistency definition with guc.c default.