I am currently using pg_dump piped to gzip piped to split. But the problem with this is that alle output files are always changed. So checksum-based backup always copies all data.

Are there any other good ways to perform an incremental backup of a posgres database, where a full database can be restored from the backup data.

For instance if pg_dump could make everything absolutely ordered, so all changes are applied only at the end of the dump, or similar.

Thanks!

link|improve this question

75% accept rate
feedback

2 Answers

up vote 11 down vote accepted

You can use PostgreSQL's continuous WAL archiving method. First you need to set wal_level=archive, then do a full filesystem-level backup (between issuing pg_start_backup() and pg_stop_backup() commands) and then just copy over newer WAL files by configuring the archive_command option.

Advantages:

  • Incremental, the WAL archives include everything necessary to restore the current state of the database
  • Almost no overhead, copying WAL files is cheap
  • You can restore the database at any point in time (this feature is called PITR, or point-in-time recovery)

Disadvantages:

  • More complicated to set up than pg_dump
  • The full backup will be much larger than a pg_dump because all internal table structures and indexes are included
  • Doesn't work work well for write-heavy databases, since recovery will take a long time.

There are some tools such as pitrtools and omnipitr that can simplify setting up and restoring these configurations. But I haven't used them myself.

link|improve this answer
Just playing with this myself now and finding that even on windows (although most docs are linux heavy) this is not too bad without the tools – Daniel Casserly Apr 3 at 21:31
feedback

Another method is to backup to plain text and use rdiff to create incremental diffs.

link|improve this answer
Can't imagine doing that for a 5G database, let alone 50G ones. – Jerry May 9 at 14:00
I've used it on far bigger dbs than 50G in the past using snapshots of the data dir itself. But yeah, once a plain test backup starts getting big and unwieldy it's a good idea to used some other method. – Scott Marlowe May 10 at 2:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.