From: | Evan Rempel <erempel(at)uvic(dot)ca> |
---|---|
To: | pgsql-admin(at)postgresql(dot)org |
Subject: | WAL rotation question version 8.3.0 |
Date: | 2008-05-15 20:47:47 |
Message-ID: | 482CA173.7020204@uvic.ca |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
I am setting up a postgresql server (duh) and am using archive_mode=on
The archive command that I am using sends data to an enterprise
backup server across the network, and I must be able to handle outages
of that server without taking down the postgresql server.
Short outages are fine because the archive_command will return a non zero
result to postgresql and it will be retried every minute until successful.
If the backup server is out for a longer time, new WAL files will be created
by postgresql. This will eventually fill the pg_xlog filesystem and bad things
happen :-( To protect the production database functionality, when the pg_xlog
filesystem reaches some percentage full (we chose 90%) then the archive_command
starts reporting a success (return of zero) even though it is not able to
archive the xlog files.
I understand that this prevents me from doing a disaster recovery AND prevents
me from doing a point in time restore, but in our opinion it is better than letting
the database crash.
Now to the question.
Once the archive_command starts lying about its success, postgresql deletes
a number of the xlog files that it has been told have been successfuly archived.
Why does it do this? Can I control it? Can I turn it off?
--
Evan Rempel, Senior Systems Administrator
University of Victoria
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2008-05-15 21:13:53 | Re: WAL rotation question version 8.3.0 |
Previous Message | John R Pierce | 2008-05-15 16:41:06 | Re: [BUGS] problem in installing pgsql-8.3.1 |