Re: pg_dump: largeobject behavior issues (possible bug) - Mailing list pgsql-hackers

From Tom Lane
Subject Re: pg_dump: largeobject behavior issues (possible bug)
Date
Msg-id 14740.1429915305@sss.pgh.pa.us
Whole thread Raw
In response to Re: pg_dump: largeobject behavior issues (possible bug)  (Andrew Dunstan <andrew@dunslane.net>)
Responses Re: pg_dump: largeobject behavior issues (possible bug)
Re: pg_dump: largeobject behavior issues (possible bug)
List pgsql-hackers
Andrew Dunstan <andrew@dunslane.net> writes:
> On 04/23/2015 04:04 PM, Andrew Gierth wrote:
>> The relevant code is getBlobs in pg_dump.c, which queries the whole of
>> pg_largeobject_metadata without using a cursor (so the PGresult is
>> already huge thanks to having >100 million rows), and then mallocs a
>> BlobInfo array and populates it from the PGresult, also using pg_strdup
>> for the oid string, owner name, and ACL if any.

> I'm surprised this hasn't come up before. I have a client that I 
> persuaded to convert all their LOs to bytea fields because of problems 
> with pg_dump handling millions of LOs, and kept them on an older 
> postgres version until they made that change.

Yeah, this was brought up when we added per-large-object metadata; it was
obvious that that patch would cause pg_dump to choke on large numbers of
large objects.  The (perhaps rather lame) argument was that you wouldn't
have that many of them.

Given that large objects don't have any individual dependencies,
one could envision fixing this by replacing the individual large-object
DumpableObjects by a single placeholder to participate in the sort phase,
and then when it's time to dump that, scan the large objects using a
cursor and create/print/delete the information separately for each one.
This would likely involve some rather painful refactoring in pg_dump
however.
        regards, tom lane



pgsql-hackers by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: Feedback on getting rid of VACUUM FULL
Next
From: Peter Eisentraut
Date:
Subject: Re: improving speed of make check-world