The following instructions show you how to move your data from self-hosted
TimescaleDB to a Timescale instance using pg_dump
and psql
. To not lose any
data, applications which connect to the database should be taken offline. The
duration of the migration is proportional to the amount of data stored in your
database.
We do not recommend using this migration method to migrate more than 100 GB of data, primarily because of the amount of downtime that it implies for your application, instead use the dual-write and backfill low-downtime migration solution. Should you nonetheless wish to migrate more than 400 GB of data with this method, open a support request to ensure that enough disk is pre-provisioned on your Timescale instance.
You can open a support request directly from the Timescale console, or by email to [email protected].
Note
In the context of migrations, your existing production database is referred to as the "source" database, while the new Timescale database that you intend to migrate your data to is referred to as the "target" database.
For minimal downtime, the pg_dump
and psql
commands should be run from a
machine with a low-latency, high-throughput link to the database that they are
connected to. As Timescale instances run in the Amazon cloud, use an AWS EC2
instance in the same region as your Timescale instance.
Before you begin, ensure that you have:
- Installed the PostgreSQL client libraries on the machine that you will
perform the migration from, you will require
pg_dump
andpsql
. - Created a database service in Timescale.
- Checked that all PostgreSQL extensions you use are available on Timescale. For more information, see the list of compatible extensions.
- Checked that the version of PostgreSQL in your target database is greater than or equal to that of the source database.
- Checked that you're running the exact same version of Timescale on both your target and source databases (the major/minor/patch version must all be the same). For more information, see the upgrade instructions for self-hosted TimescaleDB.
Dump the roles from the source database (only necessary if you're using roles
other than the default postgres
role in your database):
pg_dumpall -d "$SOURCE" \--quote-all-identifiers \--roles-only \--file=roles.sql
Note
For the sake of convenience, connection strings to the source and target databases are referred to as $SOURCE
and $TARGET
throughout this guide. This can be set in your shell, for example:
export SOURCE=postgres://<user>:<password>@<source host>:<source port>/<dbname>export TARGET=postgres://<user>:<password>@<target host>:<target port>/<dbname>
Dump the source database schema and data:
pg_dump -d "$SOURCE" \--format=plain \--quote-all-identifiers \--no-tablespaces \--no-owner \--no-privileges \--file=dump.sql
Note
It is possible to dump using multiple connections to the source database, which may dramatically reduce the time taken to dump the source database. For more information, see dumping with concurrency and restoring with concurrency.
The following is a brief explanation of the flags used:
--no-tablespaces
is required because Timescale does not support tablespaces other than the default. This is a known limitation.--no-owner
is required because Timescale'stsdbadmin
user is not a superuser and cannot assign ownership in all cases. This flag means that everything is owned by the user used to connect to the target, regardless of ownership in the source. This is a known limitation.--no-privileges
is required because Timescale'stsdbadmin
user is not a superuser and cannot assign privileges in all cases. This flag means that privileges assigned to other users must be reassigned in the target database as a manual clean-up task. This is a known limitation.
It is very important that the version of the TimescaleDB extension is the same in the source and target databases. This requires upgrading the TimescaleDB extension in the source database before migrating.
You can determine the version of TimescaleDB in the target database with the following command:
psql $TARGET -c "SELECT extversion FROM pg_extension WHERE extname = 'timescaledb';"
To update the TimescaleDB extension in your source database, first ensure that the desired version is installed from your package repository. Then you can upgrade the extension with the following query:
psql $SOURCE -c "ALTER EXTENSION timescaledb UPDATE TO '<version here>';"
For more information and guidance, consult the Upgrade TimescaleDB page.
The following command loads the dumped data into the target database:
psql $TARGET -v ON_ERROR_STOP=1 --echo-errors \-f roles.sql \-c "SELECT timescaledb_pre_restore();" \-f dump.sql \-c "SELECT timescaledb_post_restore();"
It uses timescaledb_pre_restore and timescaledb_post_restore to put your database in the right state for restoring.
Verify that the data has been successfully restored by connecting to the target database and querying the restored data.
Once you have verified that the data is present, and returns the results that you expect, you can reconfigure your application to use the target database and start it.
Keywords
Found an issue on this page?
Report an issue!