Re: Our poll() based WaitLatch implementation is broken
От | Heikki Linnakangas |
---|---|
Тема | Re: Our poll() based WaitLatch implementation is broken |
Дата | |
Msg-id | 4F1335AB.3020808@enterprisedb.com обсуждение исходный текст |
Ответ на | Our poll() based WaitLatch implementation is broken (Peter Geoghegan <peter@2ndquadrant.com>) |
Список | pgsql-hackers |
On 15.01.2012 09:26, Peter Geoghegan wrote: > Build Postgres master, on Linux or another platform that will use the > poll() implementation rather than the older select(). Send the > Postmaster SIGKILL. Observe that the WAL Writer lives on, representing > a denial of service as it stays attached to shared memory, busy > waiting (evident from the fact that it quickly leaks memory). The poll()-based implementation checked for POLLIN on the postmaster-alive-pipe, just like we check for the fd to become readable in the select() implementation. But poll() has a separate POLLHUP event code for that; it does not set POLLIN on the fd but POLLHUP. Fixed, to check POLLHUP. I still kept the check POLLIN, the pipe should never become readable so if it does something is badly wrong. I also threw in a check for POLLNVAL, which means "Invalid request: fd not open". That should definitely not happen, but if it does, it seems good to treat it as postmaster death too. Even if the postmaster isn't dead yet, we could no longer detect when it does die. > The rationale for introducing the poll()-based implementation where > available was that it performed better than a select()-based one. I > wonder, how compelling a win is that expected to be? Ganesh Venkitachalam did some micro-benchmarking after the latch patch was committed: http://archives.postgresql.org/pgsql-hackers/2010-09/msg01609.php. I don't think it make any meaningful difference in real applications, but poll() also doesn't have an arbitrary limit on the range of fd numbers that can be used. -- Heikki Linnakangas EnterpriseDB http://www.enterprisedb.com
В списке pgsql-hackers по дате отправления: