Re: why restoring a dump file is sooo slow

From: "scott(dot)marlowe" <scott(dot)marlowe(at)ihs(dot)com>
To: Reynard Hilman <reynardmh(at)lightsky(dot)com>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: why restoring a dump file is sooo slow
Date: 2003-04-28 15:04:55
Message-ID: Pine.LNX.4.33.0304280901400.2646-100000@css120.ihs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sat, 26 Apr 2003, Reynard Hilman wrote:

> Hi,
>
> I'm trying to restore a dump file that I created using:
> pg_dump -CD dbname > dump.sql
>
> the dump file size is about 87 Mb.
>
> so I did this to restore:
> psql -f dump.sql -U user template1
>
> It takes almost an hour and a half to restore the database.
>
> I'm just wondering if that is normal for such a small database (87Mb), or
> is something wrong with how I did the restore or with my db configuration?
> btw, it's on dual pIII server running redhat 7.3. with about 2G of memory.

You don't mention what flavor of Postgresql this is. The latest version
would probably help a bit. Also, things like FK constraints can cause
slow load times. But 87 megs in an hour and a half is REALLY slow. for
comparison, I can dump our 1 gig (post dump) database from one Dual PIII
to another dual PIII in 10 minutes. i.e.:

'pg_dump -h otherbox dbname| psql dbname'

But that's running 7.3.x. It took about 30 to 40 minutes on 7.2 but my
memory of that time period is fading fast.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Ivan 2003-04-28 15:07:31 encrypt/decrypt problem
Previous Message scott.marlowe 2003-04-28 15:01:13 Re: SQL schema to LDAP schema ?