Re: Postgres Stream Replication Failover Questions

From: Shreeyansh Dba <shreeyansh2014(at)gmail(dot)com>
To: Mahmoud Moharam <mmoharam(at)lucidya(dot)com>
Cc: Pgsql-admin <pgsql-admin(at)lists(dot)postgresql(dot)org>
Subject: Re: Postgres Stream Replication Failover Questions
Date: 2019-03-27 09:36:45
Message-ID: CAGDYbUOhQtNxh=h-OxjVx9EKJ0AFRBaW2UzTQds+6N40=Pg-iQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Wed, Mar 27, 2019 at 1:49 PM Mahmoud Moharam <mmoharam(at)lucidya(dot)com>
wrote:

> thanks for your kind reply
>>
>> 4. If I started inserting into slave (which will become master) server
>> until old master is back, do I have to reverse the configuration?
>>
> Yes, you can rebulid manually. There are so many tools available to
> perform the auto switchover.
> what will happen to data which insert into slave (promoted master ) when I
> original master become healthy
> is there is a doc which show failover in detailed steps ?
>
>
If the primary server fails and the standby server becomes the new primary,
and then the old primary restarts, you must have a mechanism for informing
the old primary that it is no longer the primary. It is necessary to avoid
situations where both systems think they are the primary, which will lead
to confusion and ultimately data loss.

For more information go through below link :
https://www.postgresql.org/docs/9.6/warm-standby-failover.html

Thanks & Regards,
*Shreeyansh DBA Team*
www.shreeyansh.com

On Wed, Mar 27, 2019 at 10:10 AM Shreeyansh Dba <shreeyansh2014(at)gmail(dot)com>
> wrote:
>
>> Hi Mahmoud,
>> Please find answers in line...
>>
>> On Wed, Mar 27, 2019, at 12:07 PM Mahmoud Moharam <mmoharam(at)lucidya(dot)com>
>> wrote:
>>
>>> Dear All ,
>>> as I try to configure Postgres Stream Replication Failover strategy some
>>> questions pop-up so can you please help on answering these concerns
>>> 1. What happens to the master server when I kill the slave server?
>>>
>> It depends on what type replication mode, you use.
>> i. In case synchronous replication master-slave always running if
>> slave not available then master goes to waiting state.
>> ii. In case asynchronous replication if slave not available, then
>> master server work.
>>
>>> 2. Is replication going to affect insert speed on the master server?
>>>
>> All write operation performed on master server only. To improve
>> performance you can use slave for select operations.
>>
>>> 3. What happens when I kill master and slave is running? is there an
>>> automatic way to check and auto promote ?
>>>
>> If Master kills, then Slave is continue running in recovery mode. You can
>> manually promote the Slave as Master. There are so many tools available to
>> perform the auto failover.
>>
>>> 4. If I started inserting into slave (which will become master) server
>>> until old master is back, do I have to reverse the configuration?
>>>
>> Yes, you can rebulid manually. There are so many tools available to
>> perform the auto switchover.
>>
>> Thanks & Regards,
>> *Shreeyansh DBA Team*
>> www.shreeyansh.com
>>
>

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Pierre Ochsenbein 2019-03-27 12:06:13 pgsql database size
Previous Message Mahmoud Moharam 2019-03-27 08:19:32 Re: Postgres Stream Replication Failover Questions