You can migrate data from databases within a Kubernetes cluster to external storages using:
- External tools. Read more in the Data migration from embedded to external databases in BRIX Enterprise article.
- brix365-Backupper utility.
The main steps of data migration using brix365-Backupper utility:
начало внимание
After migrating databases to external storages, system reactivation is required.
конец внимание
Step 1: Back up databases
- Install the brix365-Backupper utility and set up its configuration. Read more about it in the Back up and recover databases article.
- Back up the BRIX application databases:
brix365-backupper backup <<db-type>>
Where <<db-type>> is the name of the database that you want to back up. Value options:
mongospecifies MongoDB.postgresspecifies PostgreSQL.s3specifies S3 storage.allspecifies all databases (MongoDB, PostgreSQL, S3).
To specify two databases, you can combine the mongo, postgres, and s3 values by separating them with commas. For example, postgres,s3 or mongo,postgres.
Step 2: Update BRIX application parameters
- Since the brix365-Backupper utility gets the database path settings from the
values-brix365.yamlconfiguration file, specify the values of external storages in this file. - Update the BRIX application parameters using the
values-brix365.yamlconfiguration file.
Updating parameters via the Internet
helm show chart brix365/brix365 root@brix-node1:~#
The chart version will be specified in the
helm upgrade --install brix365 brix365/brix365 -f values-brix365.yaml --version <brix365-chart-version> --timeout=30m --wait [-n namespace]
|
Updating parameters without the Internet connection
helm upgrade --install brix365 ./brix365 -f values-brix365.yaml --timeout=30m --wait [-n namespace]
|
Step 3: Restore databases
- Restoring from backup should be done to empty databases and S3 storage. So clean them with the
--cleanup-databaseskey. - Restore the databases from the last backup:
brix365-backupper restore <<db-type>>
Where <<db-type>> is the name of the database for which you want to get a list of backups. Value options:
mongospecifies MongoDB.postgresspecifies PostgreSQL.s3specifies S3 storage.allspecifies all databases (MongoDB, PostgreSQL, S3).
To specify two databases, you can combine the mongo, postgres, and s3 values by separating them with commas. For example, postgres,s3 or mongo,postgres.
Found a typo? Select it and press Ctrl+Enter to send us feedback