Resources

Migrate from Amazon RDS to Supabase

This guide aims to exhibit the process of transferring your Amazon RDS database from any of these engines Postgres, MySQL or MS SQL to Supabase's Postgres database. Although Amazon RDS is a favored managed database service provided by AWS, it may not suffice for all use cases. Supabase, on the other hand, provides an excellent free and open source option that encompasses all the necessary backend features to develop a product: a Postgres database, authentication, instant APIs, edge functions, real-time subscriptions, and storage.

Supabase's core is Postgres, enabling the use of row-level security and providing access to over 40 Postgres extensions. By migrating from Amazon RDS to Supabase, you can leverage Postgres to its fullest potential and acquire all the features you need to complete your project.

Retrieve your Amazon RDS database credentials

  1. Log in to your Amazon RDS account.
  2. Select the region where your RDS database is located.
  3. Navigate to the Databases tab.
  4. Select the database that you want to migrate.
  5. In the Connectivity & Security tab, note down the Endpoint and the port number.
  6. In the Configuration tab, note down the Database name and the Username.
  7. If you do not have the password, create a new one and note it down.

Copying RDS credentials from AWS Management Console

Retrieve your Supabase host

  1. If you're new to Supabase, create a project. Make a note of your password, you will need this later. If you forget it, you can reset it here.

  2. Go to the Database settings for your project in the Supabase Dashboard.

  3. Under Connection Info, note your Host ($SUPABASE_HOST).

Finding Supabase host address

Migrate the database

The fastest way to migrate your database is with the Supabase migration tool on Google Colab.

Alternatively, you can use pgloader, a flexible and powerful data migration tool that supports a wide range of source database engines, including MySQL and MS SQL, and migrates the data to a Postgres database. For databases using the Postgres engine, we recommend using the pg_dump and psql command line tools, which are included in a full PostgreSQL installation.

  1. Select the Dabase Engine from the Source database in the dropdown
  2. Set the environment variables (HOST, USER, SOURCE_DB,PASSWORD, SUPABASE_URL, and SUPABASE_PASSWORD) in the Colab notebook.
  3. Run the first two steps in the notebook in order. The first sets engine and installs the necessary files.
  4. Run the third step to start the migration. This will take a few minutes.