Re: Multiple Slave Failover with PITR - Mailing list pgsql-general

From Albe Laurenz
Subject Re: Multiple Slave Failover with PITR
Date
Msg-id D960CB61B694CF459DCFB4B0128514C207AA8DC4@exadv11.host.magwien.gv.at
Whole thread Raw
In response to Multiple Slave Failover with PITR  (Ken Brush <kbrush@gmail.com>)
Responses Re: Multiple Slave Failover with PITR  (Sergey Konoplev <gray.ru@gmail.com>)
List pgsql-general
Ken Brush wrote:
> I notice that the documentation at:
> http://wiki.postgresql.org/wiki/Binary_Replication_Tutorial
>
> Doesn't contain steps in a Multiple Slave setup for re-establishing
> them after a slave has become the new master.
>
> Based on the documentation, here are the most fail-proof steps I came
up with:
>
> 1. Master dies :(
> 2. Touch the trigger file on the most caught up slave.
> 3. Slave is now the new master :)
> 4. use pg_basebackup or other binary replication trick (rsync, tar
> over ssh, etc...) to bring the other slaves up to speed with the new
> master.
> 5. start the other slaves pointing to the new master.
>
> But, that can take time (about 1-2 hours) with my medium sized DB
> (580GB currently).
>
> After testing a few different ideas that I gleaned from posts on the
> mail list, I came up with this alternative method:
>
> 1. Master dies :(
> 2. Touch the trigger file on the most caught up slave
> 3. Slave is now the new master.
> 4. On the other slaves do the following:
> 5. Shutdown postgres on the slave
> 6. Delete every file in /data/pgsql/data/pg_xlog
> 7. Modify the recovery.conf file to point to the new master and
> include the line "recovery_target_timeline='latest'"
> 8. Copy the history file from the new master to the slave (it's the
> most recent #.history file in the xlog directory)
> 9. Startup postgres on the slave and watch it sync up to the new
> master (about 1-5 minutes usually)
>
> My question is this. Is the alternative method adequate? I tested it a
> bit and couldn't find any problems with data loss or inconsistency.

That sounds like it should work fine.

Yours,
Laurenz Albe

pgsql-general by date:

Previous
From: Tom Molesworth
Date:
Subject: Re: user get notification when postgresql database updated
Next
From: Vikash3 S
Date:
Subject: Query regarding submission on To Do item for psql client "psql : Allow processing of multiple -f (file) options "