Re: Backup of live database - Mailing list pgsql-admin

From Scott Marlowe
Subject Re: Backup of live database
Date
Msg-id dcc563d10801161527s39b3e3adm566357813f4b9a13@mail.gmail.com
Whole thread Raw
In response to Re: Backup of live database  (Tom Davies <tgdavies@gmail.com>)
List pgsql-admin
On Jan 16, 2008 4:56 PM, Tom Davies <tgdavies@gmail.com> wrote:
>
> On 17/01/2008, at 4:42 AM, Tom Arthurs wrote:
> > The important thing is to start archiving the WAL files *prior* to
> > the first OS backup, or you will end up with an unusable data base.
>
> Why does the recovery need WAL files from before the backup?

It's a timeline thing.  The database is coherent at time x1.  The wal
file started at point x0 and moving forward, at some point, matches
up.  You run the start_archive command which tells pgsql you're
starting your backup at point x1.  You start the backup.  You now have
a backup of the pgsql datastore that's a mix of what you had at x1
when you started, and x2 where you stopped.

You apply the WAL from x0 forward to, say x3., and it conveniently
rewrites the datastore to be coherent.  If your WAL was from some
point between x1 and x2 you might have some data in the database that
the WAL file wouldn't write over, but was incoherent in regards to
what you'd get from point x3.  So, some pages now are out of date,
because your WAL file isn't old enough.

pgsql-admin by date:

Previous
From: Tom Lane
Date:
Subject: Re: Backup of live database
Next
From: Tom Arthurs
Date:
Subject: Re: Backup of live database