Re: [HACKERS] Shared Memory hash tables only at startup

Поиск
Список
Период
Сортировка
От Thomas Munro
Тема Re: [HACKERS] Shared Memory hash tables only at startup
Дата
Msg-id CAEepm=2esteG76fevs8hU8=AVTrQ_O7rrqiJHKEUoRPV9fjNOQ@mail.gmail.com
обсуждение исходный текст
Ответ на [HACKERS] Shared Memory hash tables only at startup  (hariprasath nallasamy <hariprasathnallasamy@gmail.com>)
Список pgsql-hackers
On Tue, May 2, 2017 at 11:54 PM, hariprasath nallasamy
<hariprasathnallasamy@gmail.com> wrote:
> Hi
>   It is clear that all of the shared memory hash tables are created during
> startup using ShmemInitHash()
>
> (In practice, all creations are done in the postmaster
> process; child processes should always be attaching to existing tables.)
>
> Is there any specific reason to do so or my understanding was wrong(we can
> create shared memory hash table at run time too?)

Because we use processes and not threads, the space has to be
allocated up front and then inherited by other process in order to
inherit the same memory map so that raw pointers can be exchanged
between backends.  DynaHash is a data structure made out of raw
pointers.

I have a proposal[1] that would provide dynamic concurrent hash tables
that can be created after startup using DSM/DSA memory, but then you
have to deal with kooky pointers, which falls out of Postgres's
policies of avoiding multithreading and embracing parallelism.

[1]
https://www.postgresql.org/message-id/flat/CAEepm%3D3d8o8XdVwYT6O%3DbHKsKAM2pu2D6sV1S_%3D4d%2BjStVCE7w%40mail.gmail.com

-- 
Thomas Munro
http://www.enterprisedb.com



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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: [HACKERS] changing mvstats output to be valid JSON
Следующее
От: Tomas Vondra
Дата:
Сообщение: Re: [HACKERS] CTE inlining