From: | "Andrey M(dot) Borodin" <x4mmm(at)yandex-team(dot)ru> |
---|---|
To: | Michail Nikolaev <michail(dot)nikolaev(at)gmail(dot)com> |
Cc: | PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: [PATCH] Btree BackwardScan race condition on Standby during VACUUM |
Date: | 2020-03-17 05:20:11 |
Message-ID: | 484E2002-DC57-4D7D-AE0B-4B09C9AB616B@yandex-team.ru |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Hi Michail!
Very interesting bug.
> 16 марта 2020 г., в 19:07, Michail Nikolaev <michail(dot)nikolaev(at)gmail(dot)com> написал(а):
>
> So, I think right way is to lock all three pages as it is done on the
> primary. As far as I can see it is not causes any real performance
> regression.
It seems to me that it's exactly the same check that I was trying to verify in amcheck patch [0].
But there it was verified inside amcheck, but here it is verified by index scan.
Basically, one cannot check that two vice-versa pointers are in agreement without locking both.
As a result, they must be changed under lock too.
In my view, lock coupling is necessary here. I'm not sure we really need to lock three pages though.
Is there a reason why concurrency protocol on standby should not be exactly the same as on primary?
Best regards, Andrey Borodin.
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Paquier | 2020-03-17 05:33:32 | Re: ALTER tbl rewrite loses CLUSTER ON index |
Previous Message | Paul A Jungwirth | 2020-03-17 04:52:12 | Re: range_agg |