For the latest updates and improvements in production, open docs.codacy.com instead.
Database migration guide#
Migrating databases between pods is a straightforward process with 3 steps:
- Dump the databases to a dump file.
- Apply the dump file.
- Delete the dump file.
You will have to dump all the following databases:
- accounts
- analysis
- filestore
- jobs
- metrics
- results
Requirements#
The following operations must be executed by a user which has elevated access (SUPERUSER
) in the Postgres databases.
Dumping your current data out of a running Postgres#
You will need to know the following:
$HOSTNAME
- the hostname where the database is located.$DB_USER
- the username with privileged access to the database that will perform the dump.$DB
- the database that you would like to export.$DB_PASSWORD
- the database password.
pg_dump#
The following command lets you extract a given database into a dump file:
PGPASSWORD=$DB_PASSWORD pg_dump -h $SRC_HOSTNAME -p $SRC_HOSTPORT -U $DB_USER --clean -Fc $db > /tmp/$db.dump
This will dump the file with the .dump
extension into the /tmp
folder.
For more information and additional options, please check the official documentation.
pg_restore#
To restore a database, you can run a pg_restore
command to consume the dump file and replicate the data onto Postgres:
PGPASSWORD=$DB_PASSWORD pg_restore -h $DEST_HOSTNAME -p $DEST_HOSTPORT -U $DB_USER -j 8 -d $db -n public --clean $db.dump
With the custom format from pg_dump
(by using -Fc
) we can now invoke pg_restore
with multiple parallel jobs. This should make the restoration of the databases quicker, depending on which value you provide for the number of parallel jobs to execute. We provide a value of 8 parallel jobs in the example above (-j 8
).
Note
If you run into any problems while restoring, make sure that you have the database created in that Postgres instance (e.g. before restoring the jobs database the Postgres instance should have an empty database called jobs
created there).
For more information and additional options, please check the official documentation.
Sample script#
Assuming you have the same $DB_USER
and $DB_PASSWORD
, and that you want to migrate all the databases from the same hostname to the same destination hostname, you could migrate your databases with the following sample script:
SRC_HOSTNAME=$1
SRC_HOSTPORT=$2
DEST_HOSTNAME=$3
DEST_HOSTPORT=$4
DB_USER=$5
DB_PASSWORD=$6
declare -a dbs=(accounts analysis filestore jobs metrics results)
for db in ${dbs[@]}
do
PGPASSWORD=$DB_PASSWORD pg_dump -h $SRC_HOSTNAME -p $SRC_HOSTPORT -U $DB_USER --clean -Fc $db > /tmp/$db.dump
PGPASSWORD=$DB_PASSWORD pg_restore -h $DEST_HOSTNAME -p $DEST_HOSTPORT -U $DB_USER -d $db -n public --clean $db.dump
done
As an example, you could run the script as follows:
migrateDBs.sh postgres–instance1.us-east-1.rds.amazonaws.com 25060 postgres–instance1.eu-west-1.rds.amazonaws.com 25060 super_user secret_password
Share your feedback 📢
Did this page help you?
Thanks for the feedback! Is there anything else you'd like to tell us about this page?
255 characters left
We're sorry to hear that. Please let us know what we can improve:
255 characters left
Alternatively, you can create a more detailed issue on our GitHub repository.
Thanks for helping improve the Codacy documentation.
Edit this page on GitHub if you notice something wrong or missing.
If you have a question or need help please contact support@codacy.com.