Re: Seeking help extricating data from Amazon RDS Aurora/Postgres

From: Christophe Pettus <xof(at)thebuild(dot)com>
To: Bill Mitchell <bill(at)publicrelay(dot)com>
Cc: General PostgreSQL List <pgsql-general(at)postgresql(dot)org>
Subject: Re: Seeking help extricating data from Amazon RDS Aurora/Postgres
Date: 2024-01-29 19:25:31
Message-ID: 2482D73C-7A4F-4269-9C3A-4170667E17E2@thebuild.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> On Jan 29, 2024, at 11:22, Bill Mitchell <bill(at)publicrelay(dot)com> wrote:
>
> Wondering if any of the other members of this LISTSERV have tried migrating their data off of Amazon RDS Aurora Postgres with success.

Any logical-replication based solution (DMS, fivetran, in-core logical replication) will handle the problem. Although the overall migration time is high, the source database is in production for the entire time, so the actual downtime is small.

DMS is not a great solution for going PostgreSQL-to-PostgreSQL, as it has limited data type support. In-core logical replication is probably the best solution.

One thing to be aware of is when replication starts, it first needs to copy over the existing data in the tables *and* capture changes that occur during that copy. Because of that, it will retain WAL created during that copy. That can be quite a bit of disk space, so planning for that is important.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Shaheed Haque 2024-01-29 19:35:15 Re: Scriptable way to validate a pg_dump restore ?
Previous Message Bill Mitchell 2024-01-29 19:22:10 Seeking help extricating data from Amazon RDS Aurora/Postgres