Re: WAL segment not replicated

From: Ian Barwick <ian(dot)barwick(at)2ndquadrant(dot)com>
To: Ted EH <ted(dot)elhourani(at)gmail(dot)com>, pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: WAL segment not replicated
Date: 2018-03-01 04:51:28
Message-ID: e009c407-3266-fdcb-c84d-5449c235654a@2ndquadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On 03/01/2018 11:43 AM, Ted EH wrote:
> I have a 2 node active/standby setup, with synchronous streaming enabled.
>
> WAL segments are replicated as expected on the standby.
>
> However, if I manually kill the postgres process with pkill on the primary

Why are you using pkill (and how)?

> I'm ending up with a standby WAL behind that of the primary. The primary
> seems to be incrementing its WAL automatically after I restart it.
>
> Example:
> Before killing the pg process:
> Primary & standby seem to be synchronizing synchronously:
>
> pg_last_wal_receive_lsn
> -------------------------
> 0/5E0108B0
> (1 row)
>
> pg_current_wal_lsn
> --------------------
> 0/5E0108B0
> (1 row)
>
> Now I do "pkill postgres", on the primary the WAL dir has
> 00000001000000000000005F as the lastest segment (file) (supposed to be 5E, but unexpectedly getting incremented)
> while the standby has:
> 00000001000000000000005E as its lastest segment
>
> The problem is if I want to restart the primary as a standby (swapping the roles),
> it will complain about asking for a WAL too far in the future that is not available
> on the new primary (old standby):
>
> could not receive data from WAL stream: ERROR: requested starting point 0/5F000000 is ahead of the WAL flush position of this server 0/5E0CBF38
>
> requested starting point 0/5F000000 is ahead of the WAL flush position of this server 0/5E0D3200
>
> Isn't the primary (original primary) expected to know how far is its standby?

Nope. Once you promote the standby, it's an independent node; what happens
on the original primary is of no consequence.

If the primary was shut down cleanly *before* the standby was promoted,
you should be able to reattach it as a standby.

However it sounds like you've forced an unclean shutdown of your (former)
primary without everything being flushed to the standby. After restarting
the (former) primary it's probably gone into automatic recovery, replaying
some WAL not flushed to the standby, thus creating a divergence from your
standby, which can't be resolved without manual intervention.

> Doing a base backup recovery is not an option for me at this point.
>
> This is "pg_ctl (PostgreSQL) 10.2"

pg_rewind could potentially help:

https://www.postgresql.org/docs/current/static/app-pgrewind.html

Regards

Ian Barwick

--
Ian Barwick http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Rui DeSousa 2018-03-01 04:57:44 Re: Reliable WAL file shipping over unreliable network
Previous Message Mark Kirkwood 2018-03-01 03:46:41 Re: Reliable WAL file shipping over unreliable network