|
|
|
|
|
by andruby
3225 days ago
|
|
It does continuous backup like WAL-E. Both back up PG's WAL files (Write Ahead Log) and allow restoring your database state as it was at a specific time or after a specific transaction committed. This is known as point-in-time recovery (PITR) [0] Users and admins make mistakes, and accidentally delete or overwrite data. With PITR you can restore in a new environment, just before the mistake occurred and recover the data from there. [0] https://www.postgresql.org/docs/9.6/static/continuous-archiv... |
|