From: | Scott Corscadden <scott(at)corscadden(dot)ca> |
---|---|
To: | "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org> |
Cc: | "support(at)binnj(dot)com" <support(at)binnj(dot)com> |
Subject: | pg_largeobject implementation question |
Date: | 2012-10-10 14:50:59 |
Message-ID: | 13A046FE-4A9B-44E1-BCED-D87F77E68F96@corscadden.ca |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
I'm pruning an 8.4 database that was using a *lot* of space in pg_largeobject (400GB according to my size query). What I've done seems to work, but I don't know if there's a time-bomb waiting for me, so I have to ask you who've implemented this part. Steps:
1) On new.better.server.com: time nc -l -p 1234 | tee backup.dump | pg_restore --verbose -Fc -d mydbname
2) On old.godhelpme.server.com: pg_dump --verbose -Fc -Z 0 --schema=foo --schema=bar --schema=public mydbname | nc other.better.server 1234
That part's pretty cool, streaming out/in works really well. By specifically picking my schemas, no large objects come across. I've already migrated out to filesystem most of them, there's around 102 actual LO's I still need though, so then:
3) On old.godhelpme.server.com: time psql -qAt -d mydbname -c 'copy (select loidcolumnname from thistable where loidcolumnname is not null) to STDOUT' >> myneat.list
I do #3 on a few tables, sort and uniquify the rows, then get the data out by:
4) On old.godhelpme.server.com: time cat myneat.list | xargs -n 1 ./extract_blobs.sh
Where extract_blobs.sh looks like this:
#/bin/bash
psql -qAt -d mydbname -c "copy (select * from pg_largeobject where loid = ${1}) to STDOUT" >> /Volumes/some-less-bad-disk/the-blobs.copy
I rsync that to the new machine, then:
5) On new.better.server.com: cat the-blobs.copy | psql -At -d mydbname -c "copy pg_largeobject (loid, pageno, data) from STDIN"
That seems to work - I spun up the new db, can add new blobs, but I notice that the loid is /lower/ than some of the ones I've imported, so
** MY QUESTION ** - Will pg_largeobject automatically choose new OIDs that don't conflict, if I've added lo's this way, by direct COPY?
Thanks so much for reading this far. If you're in London, Ontario, Canada, let me know and I'll buy you a good beer. (some limitations may apply! :)
./scc
From | Date | Subject | |
---|---|---|---|
Next Message | Thom Brown | 2012-10-10 14:54:46 | Re: Switching timeline over streaming replication |
Previous Message | Heikki Linnakangas | 2012-10-10 14:50:45 | Re: Behavior for crash recovery when it detects a corrupt WAL record |