Re: Index maintenance function for BRIN doesn't check RecoveryInProgress()

Поиск
Список
Период
Сортировка
От Masahiko Sawada
Тема Re: Index maintenance function for BRIN doesn't check RecoveryInProgress()
Дата
Msg-id CAD21AoAw0unr4Y+V3Z75BjS52_1KNLcb1=P=bQHPAezTJ4mbPg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Index maintenance function for BRIN doesn't check RecoveryInProgress()  (Simon Riggs <simon@2ndquadrant.com>)
Ответы Re: Index maintenance function for BRIN doesn't checkRecoveryInProgress()  (Michael Paquier <michael@paquier.xyz>)
Список pgsql-hackers
On Thu, Jun 14, 2018 at 12:04 AM, Simon Riggs <simon@2ndquadrant.com> wrote:
> On 13 June 2018 at 15:51, Alvaro Herrera <alvherre@2ndquadrant.com> wrote:
>> On 2018-Jun-13, Alexander Korotkov wrote:
>>
>>> On Wed, Jun 13, 2018 at 12:48 PM Kuntal Ghosh
>>> <kuntalghosh.2007@gmail.com> wrote:
>>> > On Wed, Jun 13, 2018 at 2:28 PM, Masahiko Sawada <sawada.mshk@gmail.com> wrote:
>>> > > Hi,
>>> > >
>>> > > Three functions: brin_summarize_new_values, brin_summarize_range and
>>> > > brin_desummarize_range can be called during recovery as follows.
>>> > >
>>> > > =# select brin_summarize_new_values('a_idx');
>>> > > ERROR:  cannot acquire lock mode ShareUpdateExclusiveLock on database
>>> > > objects while recovery is in progress
>>> > > HINT:  Only RowExclusiveLock or less can be acquired on database
>>> > > objects during recovery.
>>
>> Good catch!
>>
>>> > > I think we should complaint "recovery is in progress" error in this
>>> > > case rather than erroring due to lock modes.
>>> > +1
>>>
>>> +1,
>>> but current behavior doesn't seem to be bug, but rather not precise
>>> enough error reporting.  So, I think we shouldn't consider
>>> backpatching this.
>>
>> I guess you could go either way ... we're just changing one unhelpful
>> error with a better one: there is no change in behavior.  I would
>> backpatch this, myself, and avoid the code divergence.
>
> WAL control functions all say the same thing, so we can do that here also.

+1

> I'd prefer it if the message was more generic, so remove the
> summarization/desummarization wording from the message. i.e.
> "BRIN control functions cannot be executed during recovery"
>

Agreed. Attached an updated patch.

Regards,

--
Masahiko Sawada
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center

Вложения

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Teodor Sigaev
Дата:
Сообщение: Re: POC: GROUP BY optimization
Следующее
От: Andres Freund
Дата:
Сообщение: Re: Portability concerns over pq_sendbyte?