Re: postgres clustering interactions with pg_dump - Mailing list pgsql-performance

From Robert Haas
Subject Re: postgres clustering interactions with pg_dump
Date
Msg-id CA+TgmobrRyoLoWMCs=5CVvi5nyy+8R76nmf5ovCZHb5OX9MCxQ@mail.gmail.com
Whole thread Raw
In response to postgres clustering interactions with pg_dump  ("Fitch, Britt" <brittf@telenav.com>)
List pgsql-performance
On Mon, Jun 11, 2012 at 9:55 AM, Fitch, Britt <brittf@telenav.com> wrote:
> Hi, I have a table that I am clustering on an index.
>
> I am then dumping that table via pg_dump –Fc and loading it into another
> database via pg_restore.
>
> It is unclear to me though if the clustering I did in the original database
> is preserved during the dump & restore or if I would still need to perform a
> CLUSTER again once the data was loaded into the new database.
>
> Can anyone confirm this?

The rows will end up in the new table in the same physical order that
they were stored in the dump file.

You might want to look at pg_stats.correlation for the clustered
column - that's often a good way to know whether things are ordered
the way you expect, and it's updated every time the table is analyzed.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

pgsql-performance by date:

Previous
From: Jim Vanns
Date:
Subject: Re: Odd blocking (or massively latent) issue - even with EXPLAIN
Next
From: Robert Haas
Date:
Subject: Re: High CPU Usage