How to backup a Postgres DB into Allas
In this tutorial we are going to show how to backup a PostgreSQL or Maria DB running in Rahti into Allas. The general idea is to use a CronJob
that will create a dump file of the database and upload it to Allas.
Warning
This is a simple example, the backup SQL file is not compressed, the checksums are not verified, there is no encryption, ... it just shows the basic idea of creating a backup and putting it in object storage.
You can find the address of the GitHub repository here. Feel free to clone and edit it to suit your needs.
Prerequisites
-
A postgres or maria DB. You need to have read access to it. To deploy a new DB in Rahti, you can use the Postgres or MariaDB template provided in the catalog. It is also possible to backup an external DB, but all instructions assume the DB is running in Rahti in the same namespace as the backup process will be run.
-
A secret that will take the value of
$DBHOST
(eitherpostgresql
ormariadb
) with the following keys:database-user
,database-password
, anddatabase-name
. This secret is created by rclone's template, but will need to be created manually if Postgres or Mariadb is running outside Rahti. -
The
ACCESS_KEY
andSECRET_KEY
to access Allas. You may get them by doing:
Then go to OpenRC download, download the OpenStack RC File v2.0, source it, and input your password when prompted:
$ source ~/Downloads/project_XXXXXXX-openrc.sh
Please enter your OpenStack Password for project project_XXXXXXX as user <USER>:
Finally you can create the credentials:
Or if you already have created the credentials, you may show them by doing:
- An Allas bucket/container. You may create it from the web interface, or using
rclone
.
Add the CronJob
First you need to clone the repository with the template and add it to the Rahti namespace where Postgres or Mariadb is running:
git clone https://github.com/cscfi/rclone-template.git -b psql
cd rclone-template
oc create -f rclone.yaml
Once the template is added to your namespace, you just need to deploy it:
$ oc process rclone \
ACCESS_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX \
SECRET_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX \
BUCKET_DIR=existing_bucket/existing/path \
DBHOST=postgresql \ # or mariadb
SCHEDULE="0 4 * * *" | oc create -f -
This will run the backup process every day at 4:00 am. You may change the schedule, see https://en.wikipedia.org/wiki/Cron for reference. The backups won't be overwritten as it will take the date and time of the backup start.
You can find more information about the backup and restore commands here:
-
PostgreSQL: Backup database and Restore database
-
MariaDB: Backup database and Restore database