Migrating to Aiven for PostgreSQL® using Bucardo
The preferred approach to migrating a database to Aiven for PostgreSQL® is to use Aiven's open source migration tool (About aiven-db-migrate).
However, if you are running PostgreSQL 9.6 (or earlier) or
do not have superuser access to your database to add replication
slots, you can use the open source Bucardo tool
to allow replication to Aiven.
Requirements:
- An Aiven for PostgreSQL database
- Your current database
- A computer with Bucardo installed
- Connectivity between Bucardo and the source and target databases
Moving existing data
To move existing data, you can follow the steps below and
update your sync
job to use the onetimecopy and move existing data across. You can also
use the standard pg_dump and pg_restore commands to fill the Aiven
database and use Bucardo for syncing any changes to the source database
and ensuring it remains up-to-date.
Replicating changes
To migrate your data using Bucardo:
-
Install Bucardo using the installation instructions on the Bucardo site.
-
Install the
aiven_extrasextension to your current database. Bucardo requires the superuser role to set thesession_replication_roleparameter. Aiven uses the open sourceaiven_extrasextension to allow you to runsuperusercommands as a different user, as directsuperuseraccess is not provided for security reasons. -
Open and edit the
Bucardo.pmfile with administrator privileges. The location of the file can vary according to your operating system, but you might find it in/usr/local/share/perl5/5.32/Bucardo.pm, for example.-
Scroll down until you see a
disable_triggersfunction, in line 5324 in Bucardo.pm. -
In line 5359 in Bucardo.pm, change
SET session_replication_role = defaultto the following:$dbh->do(q{select aiven_extras.session_replication_role('replica');}); -
Scroll down to the
enable_triggersfunction in line 5395 in Bucardo.pm. -
On line 5428, change
SET session_replication_role = defaultto the following:$dbh->do(q{select aiven_extras.session_replication_role('origin');}); -
Save your changes and close the file.
-
-
Add your source and destination databases. For example:
bucardo add db srcdb dbhost=0.0.0.0 dbport=5432 dbname=all_your_base dbuser=$DBUSER dbpass=$DBPASS
bucardo add db destdb dbhost=cg-pg-dev-sandbox.aivencloud.com dbport=21691 dbname=all_your_base dbuser=$DBUSER dbpass=$DBPASS -
Add the tables to replicate:
bucardo add table belong to us herd=$HERD db=srcdbnoteYou can set
$HERDto any name you choose for the herd, which is used to set up the synchronization. -
Dump and restore the database from your source to your Aiven service:
pg_dump --schema-only --no-owner all_your_base > base.sql
psql "$AIVEN_DB_URL" < base.sqlYou can restore the source data or provide only the schema, depending on the size of your current database.
-
Create the
dbgroupfor Bucardo:bucardo add dbgroup src_to_dest srcdb:source destdb:target
bucardo add sync sync_src_to_dest relgroup=$HERD db=srcdb,destdb
(sudo) bucardo start
bucardo status sync_src_to_dest -
Start Bucardo and run the
statuscommand. WhenCurrent stateisGood, the data is flowing to your Aiven database. -
Log in to the Aiven Console, select your Aiven for PostgreSQL service from the Services list, and select Current Queries from the sidebar in your service's page. This shows you that the
bucardoprocess is inserting data. -
Once all your data is synchronized, switch the database connection for your applications to Aiven for PostgreSQL.