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

Поиск
Список
Период
Сортировка
От Christophe Pettus
Тема Re: Seeking help extricating data from Amazon RDS Aurora/Postgres
Дата
Msg-id 2482D73C-7A4F-4269-9C3A-4170667E17E2@thebuild.com
обсуждение исходный текст
Ответ на Seeking help extricating data from Amazon RDS Aurora/Postgres  (Bill Mitchell <bill@publicrelay.com>)
Список pgsql-general

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

Any logical-replication based solution (DMS, fivetran, in-core logical replication) will handle the problem.  Although
theoverall 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
replicationis 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*
capturechanges that occur during that copy.  Because of that, it will retain WAL created during that copy.  That can be
quitea bit of disk space, so planning for that is important. 


В списке pgsql-general по дате отправления:

Предыдущее
От: Bill Mitchell
Дата:
Сообщение: Seeking help extricating data from Amazon RDS Aurora/Postgres
Следующее
От: Shaheed Haque
Дата:
Сообщение: Re: Scriptable way to validate a pg_dump restore ?