Re: pg_dump additional options for performance - Mailing list pgsql-hackers

From Andrew Dunstan
Subject Re: pg_dump additional options for performance
Date
Msg-id 47A9D6AE.4090807@dunslane.net
Whole thread Raw
In response to pg_dump additional options for performance  (Simon Riggs <simon@2ndquadrant.com>)
List pgsql-hackers

Simon Riggs wrote:
> My proposal is to provide two additional modes:
> --schema-pre-load corresponding to (1) above
> --schema-post-load corresponding to (3) above
>
> This would then allow this sequence of commands 
>
> pg_dump --schema-pre-load
> pg_dump --data-only
> pg_dump --schema-post-load
>
> to be logically equivalent, but faster than
>
> pg_dump --schema-only
> pg_dump --data-only
>   

It would actually be better, as well as faster, because it will be 
guaranteed to work :-) There are known cases where schema-only followed 
by data-only fails.


One more note: we need to make sure the corresponding new modes are also 
added to pg_restore.

cheers

andrew


pgsql-hackers by date:

Previous
From: Simon Riggs
Date:
Subject: Segment Visibility Map for VACUUM
Next
From: Simon Riggs
Date:
Subject: Re: pg_dump additional options for performance