-
One of our pg_auto_failover clusters has to be split into separate stages because we have quite a lot of concurrent connections to a lot of separate dbs. Now I want to do the following:
Is this possible? Or should we do it differently? What is the simplest way to get data from a pg_auto_failover managed cluster into a new set of machines? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi @s4ke ; Given current pg_auto_failover releases it's possible to create a node from a pre-existing backup, either a primary or a standby node. Given that capability, your list seems okay to me. It might also be the simplest way around. Note that using 1.5.1 it might be even simpler:
If you have a small enough amount of data, you might want to see about using |
Beta Was this translation helpful? Give feedback.
Hi @s4ke ;
Given current pg_auto_failover releases it's possible to create a node from a pre-existing backup, either a primary or a standby node. Given that capability, your list seems okay to me. It might also be the simplest way around. Note that using 1.5.1 it might be even simpler:
If you have a small enough amount of data, you might want to see about using
pg_dump -Fd
which can then be restored in parallel. In that case th…