From: | Peter Eisentraut <peter(dot)eisentraut(at)2ndquadrant(dot)com> |
---|---|
To: | Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>, pgsql-hackers(at)lists(dot)postgresql(dot)org |
Subject: | Re: memory leak when serializing TRUNCATE in reorderbuffer |
Date: | 2018-08-08 19:19:16 |
Message-ID: | 04cfcf19-1a43-5d85-918d-56a8620377c4@2ndquadrant.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On 20/06/2018 21:42, Tomas Vondra wrote:
> So I think we should fix and serialize/restore the OID array, just like
> we do for tuples, snapshots etc. See the attached fix.
Yes please.
> Another thing we should probably reconsider is where the relids is
> allocated - the pointer remains valid because we happen to allocate it
> in TopMemoryContext. It's not that bad because we don't free the other
> reorderbuffer contexts until the walsender exits anyway, but still.
>
> So I propose to allocate it in rb->context just like the other bits of
> data (snapshots, ...). Replacing the palloc() in DecodeTruncate() with
> something like:
>
> MemoryContextAlloc(ctx->reorder->context,
> xlrec->nrelids * sizeof(Oid));
>
> should do the trick.
It's not clear from the code comments which context would be the
appropriate one.
More standard coding style would be to set the current memory context
somewhere, but I suppose the reorderbuffer.c code isn't written that way.
--
Peter Eisentraut http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Eisentraut | 2018-08-08 19:34:36 | unused/redundant foreign key code |
Previous Message | Tom Lane | 2018-08-08 19:18:09 | Re: Fix hints on CREATE PROCEDURE errors |