Re: Tracking latest timeline in standby mode - Mailing list pgsql-hackers

From Fujii Masao
Subject Re: Tracking latest timeline in standby mode
Date
Msg-id AANLkTikkZDV3Nj5WwZ5HuVRpqfOBNWy7a8eS7D8+Fa2C@mail.gmail.com
Whole thread Raw
In response to Re: Tracking latest timeline in standby mode  (Magnus Hagander <magnus@hagander.net>)
Responses Re: Tracking latest timeline in standby mode
List pgsql-hackers
On Mon, Mar 7, 2011 at 9:06 PM, Magnus Hagander <magnus@hagander.net> wrote:
>> I dropped the ball on this one, but now that we have pg_basebackup and
>> "pg_ctl promote" which make it easy to set up a standby and failover, I
>> think we should still do this in 9.1. Otherwise you need a restart to have a
>> 2nd standby server track the TLI change that failover causes.
>
> +1 for doing this!

+1

Comments:

+        if (!list_member_int(expectedTLIs,
+                             (int) recoveryTargetTLI))
+            ereport(LOG,
+                    (errmsg("new timeline %u is not a child of database system timeline %u",

We should check whether recoveryTargetTLI is a member of newExpectedTLIs
instead of expectedTLIs?

>    +                       /* Switch target */
>
>    +                       recoveryTargetTLI = newtarget;
>    +                       expectedTLIs = newExpectedTLIs;
>
>     Before "expectedTLIs = newExpectedTLIs", we should call
>     list_free_deep(expectedTLIs)?
>
> It's an integer list so list_free(expectedTLIs) is enough, and I doubt that leakage will ever be a problem in
practice,but in principle you're right.
 

True. But I think that it's good habit to fix a leakage no matter how
small it's.

Regards,

-- 
Fujii Masao
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center


pgsql-hackers by date:

Previous
From: Magnus Hagander
Date:
Subject: Re: Tracking latest timeline in standby mode
Next
From: Peter Eisentraut
Date:
Subject: Re: pl/python tracebacks