MongoDB backups
We have 2 ways of taking MongoDB backups.
automongodbbackup
This is how MongoDB backups have traditionally been taken on the GOV.UK Infrastructure.
A third-party script called automongodbbackup takes a mongodump
every night and stores them on disk
on a dedicated mount point on one of the MongoDB machines. This is likely the first in the replicaset as defined in the Puppet manifest.
The onsite backup machine (backup-1.management) pulls the latest backup and stores it on disk. Duplicity runs each night to send encrypted backups to an Amazon S3 bucket.
To restore from this method:
- Fetch a backup from either the dedicated mount point, the onsite machine or the S3 bucket using duplicity (to decrypt you may need a password kept in the encrypted hieradata.
- Unzip the file. This will produce a directory of data.
mongo restore --drop <directory>
mongodumps to S3
We also take backups that are sent to an Amazon S3 bucket. The timings are defined by parameters set in the manifest, but for important MongoDB clusters these may be taken every 15 minutes. The machines which take the backups are defined in hiera node classes. These backups are encrypted using GPG, but the functionality is just a straightforward mongodump.
To restore the very latest backup, there is a script available to use: /usr/local/bin/mongodb-restore-s3
. The function essentially grabs the latest backup from the S3 bucket, decrypts and unpacks it, and does a mongo restore
.
mongodumps via govuk_env_sync
in AWS
In AWS environments, the mongodump to S3 has been replaced by a very similar mechanism as part of the [govuk_env_sync
environment sync][govuk-env-sync]. Here, the dump is not GPG encrypted anymore, but we rely on S3 for encryption at rest.