Memory leak when querying GIN indexes

Поиск
Список
Период
Сортировка
От Julien Rouhaud
Тема Memory leak when querying GIN indexes
Дата
Msg-id 570FF292.2060606@dalibo.com
обсуждение исходный текст
Ответы Re: Memory leak when querying GIN indexes  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Hello,

My colleague Adrien reported me a memory leak in GIN indexes while doing
some benchmark on several am.

Here is a test case to reproduce the issue:

CREATE TABLE test AS (
    SELECT t
    FROM generate_series(now(), now() + interval '10 day', '1 second')
AS d(t)
    CROSS JOIN generate_series(1, 100) s
);
CREATE EXTENSON btree_gin;
CREATE INDEX ON test USING gin(t);

EXPLAIN ANALYZE SELECT * FROM test WHERE t >= now() and t < now() +
interval '10 day';

The last query will consume approximately 4GB of RAM (might need to
force index scan) in ExecutorState memory context.

I'm not at all familiar with GIN code, but naive attached patch seems to
fix the issue and not break anything. I can reproduce this issue up to 9.4.

Regards

--
Julien Rouhaud
http://dalibo.com - http://dalibo.org

Вложения

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

Предыдущее
От: David Steele
Дата:
Сообщение: Re: pg_basebackup creates a corrupt file for pg_stat_tmp and pg_replslot on a backup location
Следующее
От: "Daniel Verite"
Дата:
Сообщение: Re: \crosstabview fixes