Re: lock_timeout GUC patch - Review

Поиск
Список
Период
Сортировка
От zb@cybertec.at
Тема Re: lock_timeout GUC patch - Review
Дата
Msg-id b97db2b0dd25e8e0c1d496a9ecb41bb6.squirrel@internal.cybertec.at
обсуждение исходный текст
Ответ на Re: lock_timeout GUC patch - Review  (Marc Cousin <cousinmarc@gmail.com>)
Список pgsql-hackers
Hi,


first, thanks for the review.

> Hi, I've been reviewing this patch for the last few days. Here it is :
>
> * Submission review
>   * Is the patch in context diff format?
> Yes
>
>   * Does it apply cleanly to the current CVS HEAD?
> Yes
>
>   * Does it include reasonable tests, necessary doc patches, etc?
> Doc patches are there.
> There are no regression tests. Should there be ?

IIRC, there was a discussion/patch about parallel psql that can
hold more than one connections open. With that feature, a regression
test can be added. Reading the 9.0beta3 docs, it's not there
and this patch is not on the current commitfest either.
Is there anyone who knows the status of this feature?

> * Usability review
>   * Does the patch actually implement that?
> Yes
>
>   * Do we want that?
> I think so. At least I'd like to have this feature :)

:-)

>   * Do we already have it?
> No
>
>   * Does it follow SQL spec, or the community-agreed behavior?
> I didn't see a clear conclusion from the -hackers thread on this (GUC
> vs SQL statement extension)
>
>   * Does it include pg_dump support (if applicable)?
> Not applicable. Or should pg_dump and/or pg_restore put lock_timeout to 0
> ?
>
>   * Are there dangers?
> As it is a guc, it could be set globally, is that a danger ?

It could be set globally, but it will exhibit a new global behaviour.
Which is not unexpected. The problem may come from [auto]vacuum processes
can get stopped. Maybe others, too. A previous version contained a
checking function that refused to set it from postgresql.conf for this
reason, but it was frowned upon by Tom. :-) The proper fix would be
that every such processes should set this GUC to zero for them locally.

>   * Have all the bases been covered?
> I honestly don't know. It touches alarm signal handling.

> * Apply the patch, compile it and test:
>   * Does the feature work as advertised?
> I only tested it with Linux. The code is very OS-dependent. It works
> as advertised with Linux. I found only one corner case (see below)

The setitimer() function is implemented in backend/port/win32/timer.c,
so it's abstracted away. With that in mind, I think there's no
OS-dependent in this patch.

>   * Are there corner cases the author has failed to consider?
> The feature almost works as advertised : it fails when lock_timeout =
> deadlock_timeout. Then the lock_timeout isn't detected. I think this
> case isn't considered in handle_sig_alarm().

I will look into this, thanks for spotting it.

>   * Are there any assertion failures or crashes?
> No
>
>
> * Performance review
>   * Does the patch slow down simple tests?
> No
>
>   * If it claims to improve performance, does it?
> Not applicable
>
> * Does it slow down other things?
> No. Maybe alarm signal handling and enabling will be slower, as there
> is more work done there  (for instance, a GetCurrentTimestamp, that
> was only done when log_lock_waits was activated until now. But I
> couldn't measure a slowdown.
>
> * Read the changes to the code in detail and consider:
>   * Does it follow the project coding guidelines?
> I think so
>
>   * Are there portability issues?
> It seems to have already been adressed, from the previous discussion
> in the thread.
>
>   * Will it work on Windows/BSD etc?
> It should. I couldn't test it though. Infrastructure is there.
>
> * Are the comments sufficient and accurate?
> Yes
>
> * Does it do what it says, correctly?
> Yes
>
> * Does it produce compiler warnings?
> No
>
> * Can you make it crash?
> No
>
> * Consider the changes to the code in the context of the project as a
> whole:
>   * Is everything done in a way that fits together coherently with
> other features/modules?
> I have a feeling that
> enable_sig_alarm/enable_sig_alarm_for_lock_timeout tries to solve a
> very specific problem, and it gets complicated because there is no
> infrastructure in the code to handle several timeouts at the same time
> with sigalarm, so each timeout has its own dedicated and intertwined
> code. But I'm still discovering this part of the code.

There is a problem with setitimer(): only one timer can be alive
at one time with the same timer id (ITIMER_REAL).

>   * Are there interdependencies that can cause problems?
> I don't think so.

Thanks for the review, I will post a new patch sometime next week.

Best regards,
Zoltán Böszörményi




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

Предыдущее
От: Pavel Stehule
Дата:
Сообщение: Re: patch (for 9.1) string functions
Следующее
От: Bernd Helmle
Дата:
Сообщение: Re: Add column if not exists (CINE)