From: | Robert Haas <robertmhaas(at)gmail(dot)com> |
---|---|
To: | Andres Freund <andres(at)anarazel(dot)de> |
Cc: | "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: [COMMITTERS] pgsql: Change the way that LWLocks for extensions are allocated. |
Date: | 2016-08-29 16:39:30 |
Message-ID: | CA+TgmoYmHD8CdW+8yh6A=i29Co-2xiiH3YBdBRxKFZ8TqP0V8A@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
On Sat, Aug 27, 2016 at 3:30 AM, Andres Freund <andres(at)anarazel(dot)de> wrote:
> Hi,
>
> On 2016-02-04 21:43:14 +0000, Robert Haas wrote:
>> Change the way that LWLocks for extensions are allocated.
>>
>> The previous RequestAddinLWLocks() method had several disadvantages.
>> First, the locks would be in the main tranche; we've recently decided
>> that it's useful for LWLocks used for separate purposes to have
>> separate tranche IDs. Second, there wasn't any correlation between
>> what code called RequestAddinLWLocks() and what code called
>> LWLockAssign(); when multiple modules are in use, it could become
>> quite difficult to troubleshoot problems where LWLockAssign() ran out
>> of locks. To fix, create a concept of named LWLock tranches which
>> can be used either by extension or by core code.
>>
>> Amit Kapila and Robert Haas
>
> I noticed that this code has no test coverage:
>
> http://coverage.postgresql.org/src/backend/storage/lmgr/lwlock.c.gcov.html
>
> It'd be good to add some, although I'm not entirely sure what the best
> way is. Maybe add a simple pg_stat_statements test?
That would also have the advantage of improving the test coverage for
pg_stat_statements, which is at the moment quite a bit thinner than
the coverage for lwlock.c.
--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
From | Date | Subject | |
---|---|---|---|
Next Message | Heikki Linnakangas | 2016-08-29 17:16:58 | pgsql: Remove support for OpenSSL versions older than 0.9.8. |
Previous Message | Bruce Momjian | 2016-08-29 16:24:59 | Re: [COMMITTERS] pgsql: Fix pg_receivexlog --synchronous |
From | Date | Subject | |
---|---|---|---|
Next Message | Magnus Hagander | 2016-08-29 16:51:03 | Re: [PATCH] Send numeric version to clients |
Previous Message | Joshua D. Drake | 2016-08-29 16:37:44 | Re: Renaming of pg_xlog and pg_clog |