Re: parallel pg_dump

Lists: pgsql-hackers
From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Joachim Wieland <joe(at)mcknight(dot)de>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: parallel pg_dump
Date: 2012-04-03 13:26:52
Message-ID: 4F7AFA9C.4040008@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

I haven't finished reviewing this yet - but there are some things that
need to be fixed.

First, either the creation of the destination directory needs to be
delayed until all the sanity checks have passed and we're sure we're
actually going to write something there, or it needs to be removed if we
error exit before anything gets written there. Example: if there's an
error because I am dumping a 9.1 server and so should have specified
--no-synchronized-snapshots then getting the directory as a by-product
which I need to remove is annoying. Maybe pg_dump -F d should be
prepared to accept an empty directory as well as a non-existent
directory, just as initdb can. Maybe this isn't directly related to this
patch, but I have noticed it more when reviewing this patch.

Second, all the PrintStatus traces are annoying and need to be removed,
or perhaps better only output in debugging mode (using ahlog() instead
of just printf())

cheers

andrew


From: Joachim Wieland <joe(at)mcknight(dot)de>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-04-04 09:03:01
Message-ID: CACw0+11VOZ=5LtSrJMPzwgxd3xjtA1icLHufD-_F+n6AJhji_Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Tue, Apr 3, 2012 at 9:26 AM, Andrew Dunstan <andrew(at)dunslane(dot)net> wrote:
> First, either the creation of the destination directory needs to be delayed
> until all the sanity checks have passed and we're sure we're actually going
> to write something there, or it needs to be removed if we error exit before
> anything gets written there.

pg_dump also creates empty files which is the analogous case here.
Just try to dump a nonexistant database for example (this also shows
that delaying won't help...).

> Maybe pg_dump -F d should be prepared to accept an empty directory as well as a
> non-existent directory, just as initdb can.

That sounds like a good compromise. I'll implement that.

> Second, all the PrintStatus traces are annoying and need to be removed, or
> perhaps better only output in debugging mode (using ahlog() instead of just
> printf())

Sure, PrintStatus is just there for now to see what's going on. My
plan was to remove it entirely in the final patch.

Joachim


From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Joachim Wieland <joe(at)mcknight(dot)de>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-04-04 12:27:17
Message-ID: 4F7C3E25.5030303@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On 04/04/2012 05:03 AM, Joachim Wieland wrote:
>> Second, all the PrintStatus traces are annoying and need to be removed, or
>> perhaps better only output in debugging mode (using ahlog() instead of just
>> printf())
> Sure, PrintStatus is just there for now to see what's going on. My
> plan was to remove it entirely in the final patch.
>
>

We need that final patch NOW, I think. There is very little time for
this before it will be too late for 9.2.

cheers

andrew


From: Joachim Wieland <joe(at)mcknight(dot)de>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-04-04 18:43:53
Message-ID: CACw0+12F7iqWb+aOkZ2+aWtfqK4mQDFQmxy4tFtiC_Kw_TYq2Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Wed, Apr 4, 2012 at 8:27 AM, Andrew Dunstan <andrew(at)dunslane(dot)net> wrote:
>> Sure, PrintStatus is just there for now to see what's going on. My
>> plan was to remove it entirely in the final patch.
>
> We need that final patch NOW, I think. There is very little time for this
> before it will be too late for 9.2.

Here are updated patches:

- An empty directory for the directory archive format is okay now.
- Removed PrintStatus().

Let me know if you need anything else.

Attachment Content-Type Size
parallel_pg_dump_7-part1.diff text/x-patch 52.6 KB
parallel_pg_dump_7-part2.diff text/x-patch 103.3 KB

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: Joachim Wieland <joe(at)mcknight(dot)de>
Cc: Andrew Dunstan <andrew(at)dunslane(dot)net>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-04-04 19:42:04
Message-ID: 1333568402-sup-9402@alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers


Excerpts from Joachim Wieland's message of mié abr 04 15:43:53 -0300 2012:
> On Wed, Apr 4, 2012 at 8:27 AM, Andrew Dunstan <andrew(at)dunslane(dot)net> wrote:
> >> Sure, PrintStatus is just there for now to see what's going on. My
> >> plan was to remove it entirely in the final patch.
> >
> > We need that final patch NOW, I think. There is very little time for this
> > before it will be too late for 9.2.
>
> Here are updated patches:
>
> - An empty directory for the directory archive format is okay now.
> - Removed PrintStatus().

In general I'm not so sure that removing debugging printouts is the best
thing to do. They might be helpful if in the future we continue to
rework this code. How about a #define that turns them into empty
statements instead, for example? I didn't read carefully to see if the
PrintStatus() calls are reasonable to keep, though.

--
Álvaro Herrera <alvherre(at)commandprompt(dot)com>
The PostgreSQL Company - Command Prompt, Inc.
PostgreSQL Replication, Consulting, Custom Development, 24x7 support


From: Joachim Wieland <joe(at)mcknight(dot)de>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-04-05 10:32:07
Message-ID: CACw0+124dNPZfoN5NQVgFVEmbq+g-EvT_c_2+nr6S0eEuh7zvQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

So here's a pg_dump benchmark from a real world database as requested
earlier. This is a ~750 GB large 9.0.6 database, and the backup has
been done over the internal network from a different machine. Both
machines run Linux.

I am attaching a chart that shows the table size distribution of the
largest tables and the overall pg_dump runtime. The resulting (zlib
compressed) dump directory was 28 GB.

Here are the raw numbers:

-Fc dump
real 168m58.005s
user 146m29.175s
sys 7m1.113s

-j 2
real 90m6.152s
user 155m23.887s
sys 15m15.521s

-j 3
real 61m5.787s
user 155m33.118s
sys 13m24.618s

-j 4
real 44m16.757s
user 155m25.917s
sys 13m13.599s

-j 6
real 36m11.743s
user 156m30.794s
sys 12m39.029s

-j 8
real 36m16.662s
user 154m37.495s
sys 11m47.141s

Attachment Content-Type Size
pg_dump_benchmark.pdf application/pdf 77.9 KB

From: Stefan Kaltenbrunner <stefan(at)kaltenbrunner(dot)cc>
To: Joachim Wieland <joe(at)mcknight(dot)de>
Cc: Andrew Dunstan <andrew(at)dunslane(dot)net>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-04-06 16:10:34
Message-ID: 4F7F157A.8020702@kaltenbrunner.cc
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On 04/05/2012 12:32 PM, Joachim Wieland wrote:
> So here's a pg_dump benchmark from a real world database as requested
> earlier. This is a ~750 GB large 9.0.6 database, and the backup has
> been done over the internal network from a different machine. Both
> machines run Linux.
>
> I am attaching a chart that shows the table size distribution of the
> largest tables and the overall pg_dump runtime. The resulting (zlib
> compressed) dump directory was 28 GB.
>
> Here are the raw numbers:
>
> -Fc dump
> real 168m58.005s
> user 146m29.175s
> sys 7m1.113s
>
> -j 2
> real 90m6.152s
> user 155m23.887s
> sys 15m15.521s
>
> -j 3
> real 61m5.787s
> user 155m33.118s
> sys 13m24.618s
>
> -j 4
> real 44m16.757s
> user 155m25.917s
> sys 13m13.599s
>
> -j 6
> real 36m11.743s
> user 156m30.794s
> sys 12m39.029s
>
> -j 8
> real 36m16.662s
> user 154m37.495s
> sys 11m47.141s

interesting numbers, any details on the network speed between the boxes,
the number of cores, the size of the dump uncompressed and what the
appearant bottleneck was?

Stefan


From: Joachim Wieland <joe(at)mcknight(dot)de>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-06-19 02:05:06
Message-ID: CACw0+12EQKtUcUApJKp18M0-4-YQDM8zMgrmbw6d9OvxFUEQBw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Wed, Apr 4, 2012 at 2:43 PM, Joachim Wieland <joe(at)mcknight(dot)de> wrote:
> Here are updated patches:
>
> - An empty directory for the directory archive format is okay now.
> - Removed PrintStatus().

Attached is a rebased version of the parallel pg_dump patch.

Attachment Content-Type Size
parallel_pg_dump_8-part1.diff text/x-patch 51.7 KB
parallel_pg_dump_8-part2.diff text/x-patch 102.6 KB

From: Joachim Wieland <joe(at)mcknight(dot)de>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-09-18 02:01:12
Message-ID: CACw0+1295pCqXhZ+-4fFzD8W24XHhnQ-RoviRhHBNF7=CSupzA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Mon, Jun 18, 2012 at 10:05 PM, Joachim Wieland <joe(at)mcknight(dot)de> wrote:
> Attached is a rebased version of the parallel pg_dump patch.

Attached is another rebased version for the current commitfest.

Attachment Content-Type Size
parallel_pg_dump_9-part1.diff text/x-patch 49.3 KB
parallel_pg_dump_9-part2.diff text/x-patch 103.6 KB

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Joachim Wieland <joe(at)mcknight(dot)de>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-10-14 02:46:04
Message-ID: 507A276C.2000705@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers


On 09/17/2012 10:01 PM, Joachim Wieland wrote:
> On Mon, Jun 18, 2012 at 10:05 PM, Joachim Wieland <joe(at)mcknight(dot)de> wrote:
>> Attached is a rebased version of the parallel pg_dump patch.
> Attached is another rebased version for the current commitfest.

These did not apply cleanly, but I have fixed them up. The combined diff
against git tip is attached. It can also be pulled from my parallel_dump
branch on <https://github.com/adunstan/postgresql-dev.git> This builds
and runs OK on Linux, which is a start ...

cheers

andrew

Attachment Content-Type Size
parallel_pg_dump_9ad1.patch text/x-patch 102.0 KB

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Joachim Wieland <joe(at)mcknight(dot)de>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-10-15 21:13:10
Message-ID: 507C7C66.1030309@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers


On 10/13/2012 10:46 PM, Andrew Dunstan wrote:
>
> On 09/17/2012 10:01 PM, Joachim Wieland wrote:
>> On Mon, Jun 18, 2012 at 10:05 PM, Joachim Wieland <joe(at)mcknight(dot)de>
>> wrote:
>>> Attached is a rebased version of the parallel pg_dump patch.
>> Attached is another rebased version for the current commitfest.
>
> These did not apply cleanly, but I have fixed them up. The combined
> diff against git tip is attached. It can also be pulled from my
> parallel_dump branch on
> <https://github.com/adunstan/postgresql-dev.git> This builds and runs
> OK on Linux, which is a start ...
>

Well, you would also need this piece if you're applying the patch
(sometimes I forget to do git add ...)

cheers

andrew

Attachment Content-Type Size
parallel_pg_dump_9ad1a.patch text/x-patch 38.3 KB

From: Andres Freund <andres(at)2ndquadrant(dot)com>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: Joachim Wieland <joe(at)mcknight(dot)de>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-12-08 16:01:07
Message-ID: 20121208160107.GA24326@awork2.anarazel.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

Hi,

On 2012-10-15 17:13:10 -0400, Andrew Dunstan wrote:
>
> On 10/13/2012 10:46 PM, Andrew Dunstan wrote:
> >
> >On 09/17/2012 10:01 PM, Joachim Wieland wrote:
> >>On Mon, Jun 18, 2012 at 10:05 PM, Joachim Wieland <joe(at)mcknight(dot)de>
> >>wrote:
> >>>Attached is a rebased version of the parallel pg_dump patch.
> >>Attached is another rebased version for the current commitfest.
> >
> >These did not apply cleanly, but I have fixed them up. The combined diff
> >against git tip is attached. It can also be pulled from my parallel_dump
> >branch on <https://github.com/adunstan/postgresql-dev.git> This builds and
> >runs OK on Linux, which is a start ...
>
> Well, you would also need this piece if you're applying the patch (sometimes
> I forget to do git add ...)

The patch is marked as Ready for Committer in the CF app, but at least
the whole windows situation seems to be unresolved as of yet?

Is anybody working on this? I would *love* to get this...

Greetings,

Andres Freund

--
Andres Freund http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services


From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Andres Freund <andres(at)2ndquadrant(dot)com>
Cc: Joachim Wieland <joe(at)mcknight(dot)de>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-12-08 16:13:30
Message-ID: 50C3672A.10009@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers


On 12/08/2012 11:01 AM, Andres Freund wrote:
> Hi,
>
> On 2012-10-15 17:13:10 -0400, Andrew Dunstan wrote:
>> On 10/13/2012 10:46 PM, Andrew Dunstan wrote:
>>> On 09/17/2012 10:01 PM, Joachim Wieland wrote:
>>>> On Mon, Jun 18, 2012 at 10:05 PM, Joachim Wieland <joe(at)mcknight(dot)de>
>>>> wrote:
>>>>> Attached is a rebased version of the parallel pg_dump patch.
>>>> Attached is another rebased version for the current commitfest.
>>> These did not apply cleanly, but I have fixed them up. The combined diff
>>> against git tip is attached. It can also be pulled from my parallel_dump
>>> branch on <https://github.com/adunstan/postgresql-dev.git> This builds and
>>> runs OK on Linux, which is a start ...
>> Well, you would also need this piece if you're applying the patch (sometimes
>> I forget to do git add ...)
> The patch is marked as Ready for Committer in the CF app, but at least
> the whole windows situation seems to be unresolved as of yet?
>
> Is anybody working on this? I would *love* to get this...
>
>

I am working on it when I get a chance, but keep getting hammered. I'd
love somebody else to review it too.

cheers

andrew


From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: Andres Freund <andres(at)2ndquadrant(dot)com>, Joachim Wieland <joe(at)mcknight(dot)de>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-12-08 20:05:16
Message-ID: 20121208200516.GC1428@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Sat, Dec 8, 2012 at 11:13:30AM -0500, Andrew Dunstan wrote:
>
> On 12/08/2012 11:01 AM, Andres Freund wrote:
> >Hi,
> >
> >On 2012-10-15 17:13:10 -0400, Andrew Dunstan wrote:
> >>On 10/13/2012 10:46 PM, Andrew Dunstan wrote:
> >>>On 09/17/2012 10:01 PM, Joachim Wieland wrote:
> >>>>On Mon, Jun 18, 2012 at 10:05 PM, Joachim Wieland <joe(at)mcknight(dot)de>
> >>>>wrote:
> >>>>>Attached is a rebased version of the parallel pg_dump patch.
> >>>>Attached is another rebased version for the current commitfest.
> >>>These did not apply cleanly, but I have fixed them up. The combined diff
> >>>against git tip is attached. It can also be pulled from my parallel_dump
> >>>branch on <https://github.com/adunstan/postgresql-dev.git> This builds and
> >>>runs OK on Linux, which is a start ...
> >>Well, you would also need this piece if you're applying the patch (sometimes
> >>I forget to do git add ...)
> >The patch is marked as Ready for Committer in the CF app, but at least
> >the whole windows situation seems to be unresolved as of yet?
> >
> >Is anybody working on this? I would *love* to get this...
> >
> >
>
>
> I am working on it when I get a chance, but keep getting hammered.
> I'd love somebody else to review it too.

FYI, I will be posting pg_upgrade performance numbers using Unix
processes. I will try to get the Windows code working but will also
need help.

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ It's impossible for everything to be true. +


From: Joachim Wieland <joe(at)mcknight(dot)de>
To: Bruce Momjian <bruce(at)momjian(dot)us>
Cc: Andrew Dunstan <andrew(at)dunslane(dot)net>, Andres Freund <andres(at)2ndquadrant(dot)com>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2012-12-09 04:16:55
Message-ID: CACw0+12mdw1kLDOkarUQjyg+bZPkDNtmbe3GCz0Jshd1faOxSA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Sat, Dec 8, 2012 at 3:05 PM, Bruce Momjian <bruce(at)momjian(dot)us> wrote:

> On Sat, Dec 8, 2012 at 11:13:30AM -0500, Andrew Dunstan wrote:
> > I am working on it when I get a chance, but keep getting hammered.
> > I'd love somebody else to review it too.
>
> FYI, I will be posting pg_upgrade performance numbers using Unix
> processes. I will try to get the Windows code working but will also
> need help.
>

Just let me know if there's anything I can help you guys with.

Joachim


From: Craig Ringer <craig(at)2ndQuadrant(dot)com>
To: Bruce Momjian <bruce(at)momjian(dot)us>
Cc: Andrew Dunstan <andrew(at)dunslane(dot)net>, Andres Freund <andres(at)2ndquadrant(dot)com>, Joachim Wieland <joe(at)mcknight(dot)de>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2013-01-21 10:02:57
Message-ID: 50FD1251.5040005@2ndQuadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On 12/09/2012 04:05 AM, Bruce Momjian wrote:
>
> FYI, I will be posting pg_upgrade performance numbers using Unix
> processes. I will try to get the Windows code working but will also
> need help.
I'm interested ... or at least willing to help ... re the Windows side.
Let me know if I can be of any assistance as I have build environments
set up for a variety of Windows compiler variants.

--
Craig Ringer http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services


From: Craig Ringer <craig(at)2ndQuadrant(dot)com>
To: Bruce Momjian <bruce(at)momjian(dot)us>
Cc: Andrew Dunstan <andrew(at)dunslane(dot)net>, Andres Freund <andres(at)2ndquadrant(dot)com>, Joachim Wieland <joe(at)mcknight(dot)de>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2013-01-21 12:53:05
Message-ID: 50FD3A31.2020109@2ndQuadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On 01/21/2013 06:02 PM, Craig Ringer wrote:
> On 12/09/2012 04:05 AM, Bruce Momjian wrote:
>> FYI, I will be posting pg_upgrade performance numbers using Unix
>> processes. I will try to get the Windows code working but will also
>> need help.
> I'm interested ... or at least willing to help ... re the Windows side.
> Let me know if I can be of any assistance as I have build environments
> set up for a variety of Windows compiler variants.
>
>

Andrew's git branch has a squashed copy of HEAD on top of it, so I've
tidied it up and pushed it to git://github.com/ringerc/postgres.git in
the branch parallel_pg_dump (
https://github.com/ringerc/postgres/tree/parallel_pg_dump) .

It builds and passes "vcregress check" on VS 2010 / WinSDK 7.1 on Win7.
I haven't had a chance to test the actual parallel dump feature yet;
pending.

--
Craig Ringer http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services


From: Joachim Wieland <joe(at)mcknight(dot)de>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: parallel pg_dump
Date: 2013-03-05 12:30:08
Message-ID: CACw0+10wAM_L6iC8KKL5eGzUtVjSpum1MEhaggWx5kU4VYn-QA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Mon, Oct 15, 2012 at 5:13 PM, Andrew Dunstan <andrew(at)dunslane(dot)net> wrote:
>> These did not apply cleanly, but I have fixed them up. The combined diff
>> against git tip is attached. It can also be pulled from my parallel_dump
>> branch on <https://github.com/adunstan/postgresql-dev.git> This builds and
>> runs OK on Linux, which is a start ...
>
> Well, you would also need this piece if you're applying the patch (sometimes
> I forget to do git add ...)

I am attaching rebased versions of Andrews latest patches for the
parallel pg_dump feature and a separate doc patch.

In the past I used to post two versions of the patch, one that just
prepared the code and moved stuff around without any real functional
change and one that then added the parallel dump feature on top of the
first, so that the code changes were minimal. As Andrews patch is
combined now and since that's what I rebased, it's only one part now.
If anyone wants the two patches again, please let me know.

Joachim

Attachment Content-Type Size
parallel_pg_dump_10.diff application/octet-stream 142.7 KB
pg_dump_docs.diff application/octet-stream 9.3 KB