Обсуждение: Recover from failover

Поиск
Список
Период
Сортировка

Recover from failover

От
Martin S
Дата:
Hello list,

May be this information is inside the documentation, but couldn't find it.

I'm doing some tests with postgres 9.1.1 and replication, and I was
wandering if there is some information about how to recover from a
failover.

Suppose I'm doing some kernel upgrades on the master, so in order to
avoid downtime, I promote the slave to become the master, and reboot
the old-master. Once the old-master is up and running again, I want it
to be the master as it was before. The problem are the updates and
inserts made while it was offline. Does it recovers automagically by
streaming or something? Do you have any procedures/recommendations to
do it?


Cheers,

Martin

Re: Recover from failover

От
"Kevin Grittner"
Дата:
Martin S <martins.listz@gmail.com> wrote:

> May be this information is inside the documentation, but couldn't
> find it.
>
> I'm doing some tests with postgres 9.1.1 and replication, and I
> was wandering if there is some information about how to recover
> from a failover.

Does this page provide what you need?:

http://www.postgresql.org/docs/9.1/interactive/warm-standby-failover.html

-Kevin

Re: Recover from failover

От
Jerry Sievers
Дата:
Martin S <martins.listz@gmail.com> writes:

> Hello list,
>
> May be this information is inside the documentation, but couldn't find it.
>
> I'm doing some tests with postgres 9.1.1 and replication, and I was
> wandering if there is some information about how to recover from a
> failover.
>
> Suppose I'm doing some kernel upgrades on the master, so in order to
> avoid downtime, I promote the slave to become the master, and reboot
> the old-master. Once the old-master is up and running again, I want it
> to be the master as it was before. The problem are the updates and
> inserts made while it was offline. Does it recovers automagically by
> streaming or something? Do you have any procedures/recommendations to
> do it?

About the only way you can role reverse master and standby is to stop
immediate the master, online the standby and then config the old
master as a standby and point it to the new master.

Doing a normal stop on the original master before onlining the
standby, then making changes to the old master DB and you'll have to
refresh the old master from a base backup before putting it into
recovery.

Most admins will tell you to refresh the old master in either case to
be on the safe side.  This is the conventional and guaranteed to work
approach.

HTH

> Cheers,
>
> Martin
>
> --
> Sent via pgsql-admin mailing list (pgsql-admin@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-admin
>

--
Jerry Sievers
Postgres DBA/Development Consulting
e: postgres.consulting@comcast.net
p: 305.321.1144

Re: Recover from failover

От
"white.heron white"
Дата:
Dear All,

As soon as the slave database server had been promoted to master. The old-server master database should be promote to become slave server.
I believe database replication has been done by your vendor. In this case the new master database server will replicate data with new slave database server.
Once replication completed. You may unplug the new slave database server and perform kernel operating system upgrade as standalone.

 
Regards,

MOHAMMAD ADLI BIN MT TAJUDIN

H/p number:  (017) 362 3661
Email: white.heron@yahoo.com

From: Jerry Sievers <gsievers19@comcast.net>
To: Martin S <martins.listz@gmail.com>
Cc: pgsql-admin@postgresql.org
Sent: Tuesday, December 6, 2011 10:41 AM
Subject: Re: [ADMIN] Recover from failover

Martin S <martins.listz@gmail.com> writes:

> Hello list,
>
> May be this information is inside the documentation, but couldn't find it.
>
> I'm doing some tests with postgres 9.1.1 and replication, and I was
> wandering if there is some information about how to recover from a
> failover.
>
> Suppose I'm doing some kernel upgrades on the master, so in order to
> avoid downtime, I promote the slave to become the master, and reboot
> the old-master. Once the old-master is up and running again, I want it
> to be the master as it was before. The problem are the updates and
> inserts made while it was offline. Does it recovers automagically by
> streaming or something? Do you have any procedures/recommendations to
> do it?

About the only way you can role reverse master and standby is to stop
immediate the master, online the standby and then config the old
master as a standby and point it to the new master.

Doing a normal stop on the original master before onlining the
standby, then making changes to the old master DB and you'll have to
refresh the old master from a base backup before putting it into
recovery.

Most admins will tell you to refresh the old master in either case to
be on the safe side.  This is the conventional and guaranteed to work
approach.

HTH

> Cheers,
>
> Martin
>
> --
> Sent via pgsql-admin mailing list (pgsql-admin@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-admin
>

--
Jerry Sievers
Postgres DBA/Development Consulting
e: postgres.consulting@comcast.net
p: 305.321.1144

--
Sent via pgsql-admin mailing list (pgsql-admin@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin


Re: Recover from failover

От
Martin S
Дата:
On Mon, Dec 5, 2011 at 11:58 PM, white.heron white
<white.heron@yahoo.com> wrote:
> Dear All,
>
> As soon as the slave database server had been promoted to master. The
> old-server master database should be promote to become slave server.
> I believe database replication has been done by your vendor. In this case
> the new master database server will replicate data with new slave database
> server.
> Once replication completed. You may unplug the new slave database server and
> perform kernel operating system upgrade as standalone.
>
>
> Regards,
>
> MOHAMMAD ADLI BIN MT TAJUDIN
>
> H/p number:  (017) 362 3661
> Email: white.heron@yahoo.com


Thanks for the replies guys.

I like your approach Jerry. Promoting the slave and configuring the
master to be slave before going down, so when ex-master comes up, it
gets updated.
Problem here seems to be changing configs for maintenance. One error
and you are screwed. Probably creating some script to make it more
automatic or something could be a good idea.


Cheers!

Martin