Re: Memory leak in deferrable index constraints - Mailing list pgsql-hackers

From Dean Rasheed
Subject Re: Memory leak in deferrable index constraints
Date
Msg-id 8e2dbb701001310825t195c670fr71b9f434f7b050d5@mail.gmail.com
Whole thread Raw
In response to Re: Memory leak in deferrable index constraints  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Memory leak in deferrable index constraints
List pgsql-hackers
On 31 January 2010 16:03, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> Dean Rasheed <dean.a.rasheed@googlemail.com> writes:
>> Oops, my fault. The list returned by ExecInsertIndexTuples() needs to be
>> freed otherwise lots of lists (one per row) will build up and not be freed
>> until the end of the query. This actually accounts for even more memory
>> than the after-trigger event queue. Patch attached.
>
> It seems a bit unlikely that this would be the largest memory leak in
> that area.  Can you show a test case that demonstrates this is worth
> worrying about?
>

If I do

create table foo(a int unique deferrable initially deferred);
insert into foo (select * from generate_series(1, 10000000));
begin;
update foo set a=a+1;
set constraints all immediate;
commit;

and watch the backend memory usage during the UPDATE, it grows to
around 970MB and then falls back to 370MB as soon as the UPDATE
command finishes. During whole SET CONSTRAINTS trigger execution
it then remains constant at 370MB.

With this patch, it never grows beyond the 370MB occupied by the
after-triggers queue.

Regards,
Dean


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: ordered aggregates using WITHIN GROUP (was Re: can somebody execute this query on Oracle 11.2g and send result?)
Next
From: Magnus Hagander
Date:
Subject: Re: odd output in initdb