pgsql: Fix an O(N^2) problem in foreign key references.

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема pgsql: Fix an O(N^2) problem in foreign key references.
Дата
Msg-id E1ZaSzE-0007q9-2p@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix an O(N^2) problem in foreign key references.

Commit 45ba424f improved foreign key lookups during bulk updates
when the FK value does not change.  When restoring a schema dump
from a database with many (say 100,000) foreign keys, this cache
would grow very big and every ALTER TABLE command was causing an
InvalidateConstraintCacheCallBack(), which uses a sequential hash
table scan.  This could cause a severe performance regression in
restoring a schema dump (including during pg_upgrade).

The patch uses a heuristic method of detecting when the hash table
should be destroyed and recreated.
InvalidateConstraintCacheCallBack() adds the current size of the
hash table to a counter.  When that sum reaches 1,000,000, the hash
table is flushed.  This fixes the regression without noticeable
harm to the bulk update use case.

Jan Wieck
Backpatch to 9.3 where the performance regression was introduced.

Branch
------
REL9_3_STABLE

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

Modified Files
--------------
src/backend/utils/adt/ri_triggers.c |   38 ++++++++++++++++++++++++++++++++---
1 file changed, 35 insertions(+), 3 deletions(-)


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

Предыдущее
От: Kevin Grittner
Дата:
Сообщение: pgsql: Fix an O(N^2) problem in foreign key references.
Следующее
От: Kevin Grittner
Дата:
Сообщение: pgsql: Fix an O(N^2) problem in foreign key references.