Skip to content

Commit

Permalink
Reference accurate default backup values in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gherceg committed Sep 20, 2024
1 parent 8e375bd commit eec2425
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/source/backups_dr/2-backups-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ PostgreSQL backups are made daily and weekly by default and can be made hourly o
* ``plain`` - uses the `pg_basebackup <https://www.postgresql.org/docs/9.6/app-pgbasebackup.html>`_ command to write a backup to the ``postgresql_backup_dir``.
* ``dump`` - uses the `pg_dumpall <https://www.postgresql.org/docs/9.6/app-pg-dumpall.html>`_ command to write a dump of the database to the ``postgresql_backup_dir``.

* `postgresql_backup_days`: The number of days to keep daily backups (Default: 1)
* `postgresql_backup_weeks`: The number of weeks to keep weekly backups (Default: 1)
* `postgresql_backup_days`: The number of days to keep daily backups (Default: 2)
* `postgresql_backup_weeks`: The number of weeks to keep weekly backups (Default: 2)
* `postgres_backup_hourly`: Boolean value to enable or disable hourly backups. (Default: false)
* `postgresql_backup_hours`: The number of hours to keep hourly backups (Default: 1).

Expand Down Expand Up @@ -223,9 +223,9 @@ CouchDB backups are made daily and weekly and optionally hourly. Old backups are

* ``backup_couch: True`` to enable couchdb backups (Default: ``False``\ )
* ``couch_s3: True`` to enable sending couchdb backups to your S3 provider (Default: ``False``\ )
* `couch_backup_dir`: the directory to save backups in (Default: ``/opt/data/backups/couchdb2``\ )
* `couchdb_backup_days`: The number of days to keep daily backups (Default: 1)
* `couchdb_backup_weeks`: The number of weeks to keep weekly backups (Default: 1)
* `couch_backup_dir`: The directory to save backups in (Default: ``/opt/data/backups/couchdb2``\ )
* `couchdb_backup_days`: The number of days to keep daily backups (Default: 2)
* `couchdb_backup_weeks`: The number of weeks to keep weekly backups (Default: 2)
* `couch_backup_hourly`: Boolean value to enable or disable hourly backups. (Default: false)
* `couchdb_backup_hours`: The number of hours to keep hourly backups (Default: 1).

Expand Down

0 comments on commit eec2425

Please sign in to comment.