Re: Backup done by newbie

From: Ragnar Kjørstad <postgres(at)ragnark(dot)vestdata(dot)no>
To: Gunnar Lindholm <gunix(at)telia(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: Backup done by newbie
Date: 2000-09-06 22:44:15
Message-ID: 20000907004415.B21457@vestdata.no
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Wed, Sep 06, 2000 at 08:41:44PM +0200, Gunnar Lindholm wrote:
> Hello.
> I wonder if there is anyone who has administrated a "real" database that could
> tell me something about backup of the database, what tools to use, how to
> acctually do the backup, what backup hardware to use, and so on.

What OS?

> The reason for asking this is that I might have to do a backup on a database
> soon, and the only idea I have right now is to dump the database and make a tar
> backup of the dumped data.

Can you afford stopping the database?
long enough to make a snapshot?
long enough to copy the data?

On linux, you can use LVM to create snapshots of devices. This enables
you to just shut down the database for seconds while you snapshot. Other
OSes have simular features.

You can also try just copying the data while the server is running, but
there is a chance the data will be corrupted if it gets written to while
you take your backup.

> probably go alot faster with some "real" hardware), but what should I do when I
> get 20/2*24*7=1,7 GB of data (not to unrealistic though), i.e. it would take a
> week just to dump the database? Could it be possible to just make a snapshot of
> the database on weekends and during the weeks, just doing "incremental backup"
> i.e. log the transactions?

Snapshotting the device is probably the best way.

Another idea would be to duplicate all IO (either on SQL level or
systemcall level) to another machine, and build some buffer into this
system so you can stop the writing to your secondary server when you are
running your backups.

--
Ragnar Kjørstad

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Igor N. Avtaev 2000-09-07 03:40:05 Re: [SQL] Re: 7.0.2 questions on encoding and compilation
Previous Message Gavin M. Roy 2000-09-06 19:30:31 Re: Backup done by newbie