pgsql: Repair memory leakage while ANALYZE-ing complex index expression

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Repair memory leakage while ANALYZE-ing complex index expression
Дата
Msg-id E1PFrVV-0003bs-Qo@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Repair memory leakage while ANALYZE-ing complex index expressions.

The general design of memory management in Postgres is that intermediate
results computed by an expression are not freed until the end of the tuple
cycle.  For expression indexes, ANALYZE has to re-evaluate each expression
for each of its sample rows, and it wasn't bothering to free intermediate
results until the end of processing of that index.  This could lead to very
substantial leakage if the intermediate results were large, as in a recent
example from Jakub Ouhrabka.  Fix by doing ResetExprContext for each sample
row.  This necessitates adding a datumCopy step to ensure that the final
expression value isn't recycled too.  Some quick testing suggests that this
change adds at worst about 10% to the time needed to analyze a table with
an expression index; which is annoying, but seems a tolerable price to pay
to avoid unexpected out-of-memory problems.

Back-patch to all supported branches.

Branch
------
REL8_4_STABLE

Details
-------
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=f0e4331d04fa007830666c5baa2c3e37cce9c3ff

Modified Files
--------------
src/backend/commands/analyze.c |   23 ++++++++++++++++++++---
1 files changed, 20 insertions(+), 3 deletions(-)


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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: In rewriteheap.c (used by VACUUM FULL and CLUSTER), calculate th
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Repair memory leakage while ANALYZE-ing complex index expression