pgsql: Introduce WaitEventSet API.

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Introduce WaitEventSet API.
Дата
Msg-id E1ahyBd-0002qE-Ef@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: Introduce WaitEventSet API.  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-committers
Introduce WaitEventSet API.

Commit ac1d794 ("Make idle backends exit if the postmaster dies.")
introduced a regression on, at least, large linux systems. Constantly
adding the same postmaster_alive_fds to the OSs internal datastructures
for implementing poll/select can cause significant contention; leading
to a performance regression of nearly 3x in one example.

This can be avoided by using e.g. linux' epoll, which avoids having to
add/remove file descriptors to the wait datastructures at a high rate.
Unfortunately the current latch interface makes it hard to allocate any
persistent per-backend resources.

Replace, with a backward compatibility layer, WaitLatchOrSocket with a
new WaitEventSet API. Users can allocate such a Set across multiple
calls, and add more than one file-descriptor to wait on. The latter has
been added because there's upcoming postgres features where that will be
helpful.

In addition to the previously existing poll(2), select(2),
WaitForMultipleObjects() implementations also provide an epoll_wait(2)
based implementation to address the aforementioned performance
problem. Epoll is only available on linux, but that is the most likely
OS for machines large enough (four sockets) to reproduce the problem.

To actually address the aforementioned regression, create and use a
long-lived WaitEventSet for FE/BE communication.  There are additional
places that would benefit from a long-lived set, but that's a task for
another day.

Thanks to Amit Kapila, who helped make the windows code I blindly wrote
actually work.

Reported-By: Dmitry Vasilyev Discussion:
CAB-SwXZh44_2ybvS5Z67p_CDz=XFn4hNAD=CnMEF+QqkXwFrGg@mail.gmail.com
20160114143931.GG10941@awork2.anarazel.de

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/98a64d0bd713cb89e61bef6432befc4b7b5da59e

Modified Files
--------------
configure                         |    2 +-
configure.in                      |    2 +-
src/backend/libpq/be-secure.c     |   24 +-
src/backend/libpq/pqcomm.c        |    5 +
src/backend/storage/ipc/latch.c   | 1615 +++++++++++++++++++++++++------------
src/backend/utils/init/miscinit.c |    8 +
src/include/libpq/libpq.h         |    3 +
src/include/pg_config.h.in        |    3 +
src/include/storage/latch.h       |   37 +-
src/tools/pgindent/typedefs.list  |    2 +
10 files changed, 1171 insertions(+), 530 deletions(-)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: pgsql: Best-guess attempt at fixing MSVC build for 68ab8e8ba4a471d9.
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Combine win32 and unix latch implementations.