Re: Confusing recovery message when target not hit

From: Michael Paquier <michael(dot)paquier(at)gmail(dot)com>
To: David Steele <david(at)pgmasters(dot)net>
Cc: PostgreSQL mailing lists <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Confusing recovery message when target not hit
Date: 2016-06-12 07:34:01
Message-ID: CAB7nPqRkoKaL9vqDDv=QTKyfWB7i2VjpKX6eRYXh3-bJsB84Dw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Sun, Jun 12, 2016 at 12:46 AM, David Steele <david(at)pgmasters(dot)net> wrote:
> On 6/11/16 8:22 AM, Michael Paquier wrote:
>> On Sat, Jun 11, 2016 at 9:44 AM, Thom Brown <thom(at)linux(dot)com> wrote:
>>> It may be the wrong way of going about it, but you get the idea of what I'm
>>> suggesting we output instead.
>>
>> Surely things could be better. So +1 to be more verbose here.
>>
>> + if (recoveryStopTime == 0)
>> + snprintf(reason, sizeof(reason),
>> + "recovery reached consistency before recovery
>> target time of \"%s\"\n",
>> + timestamptz_to_str(recoveryTargetTime));
>> "Reaching consistency" is not exact for here. I'd rather say "finished
>> recovery without reaching target blah"
>>
>> + if (recoveryStopXid == 0)
>> Checking for InvalidTransactionId is better here.
>>
>> And it would be good to initialize recoveryStopTime and
>> recoveryStopXid as those are set only when a recovery target is
>> reached.
>
> +1 for Michael's wording. It's not very clear in the logs right now if
> a recovery target was missed. That makes it very difficult for the user
> to determine if PITR worked or not.

By the way, we surely want to have the same logic for a recovery
target name. It could be possible to reach the end of recovery without
reaching the goal of recovery.conf. It would be good to be verbose in
this case as well by checking for recoveryStopName[0] = '\0'.
--
Michael

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Thom Brown 2016-06-12 10:52:54 Re: Confusing recovery message when target not hit
Previous Message Ants Aasma 2016-06-12 07:13:23 Re: WIP: Data at rest encryption