Re: MacOS X Shared Buffers (SHMMAX)?

Поиск
Список
Период
Сортировка
От Command Prompt, Inc.
Тема Re: MacOS X Shared Buffers (SHMMAX)?
Дата
Msg-id Pine.LNX.4.30.0205220939590.14696-100000@commandprompt.com
обсуждение исходный текст
Ответ на Re: MacOS X Shared Buffers (SHMMAX)?  (Steve Lane <slane@fmpro.com>)
Ответы Re: MacOS X Shared Buffers (SHMMAX)?  (Gregory Seidman <gss+pg@cs.brown.edu>)
Re: MacOS X Shared Buffers (SHMMAX)?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
On Mon, 20 May 2002, Steve Lane wrote:
>Actually --- :-> I'm no expert on this topic, but Darwin is BSD and I do
>recall a post on this very topic, to the effect that the poster believed
>some flavors of BSD, possibly MOSX included, do require rebuilding the
>kernel to change this value.
>
>As a MOSX user I'd certainly love to be found wrong.

Well, after doing some digging in the OS X Darwin Developer archives, it
definitely appears that at this stage in Darwin's design it DOES require a
re-build of the Kernel -- thanks to those of you who pointed me in that
direction. ;)

Fortunately it's a fairly painless process I've found; you just need to
sign up with the Apple Open Source site, and you have instant CVS access.

I was able to pull down the source for the Kernel, and increased the
SHMMAX by a factor of 16. Upgraded to the new Kernel and I am now able to
get safely 512 connections, even up around 900, but bumping it up to 1024,
I run into the following error:

PGSTATBUFF: recvfrom(2): Resource temporarily unavailable
DEBUG:  statistics collector process (pid 1988) exited with exit code 1

...which then repeats itself infinitely until the calling process is
stopped. ;)

I've upped the limit on the number of open files with ulimit, but I was
wondering if anyone knows what specifically invokes this "resource
temporarily unavailable" message from PGSTATBUFF? I don't see it in the
source casually grepping around, so is it I take it the result of the
recvfrom() function?

[...actually, a minute later of looking at the source...]

Okay, so it appears to be when it's checking sockets for data in
src/backend/postmaster/pgstat.c, line 1579...I just tried re-building the
kernel with a higher value for kern.ipc.maxsockets but that didn't have
any effect, still get that error.

Anyone have any ideas on what specifically would cause this part of pgstat
to fail?

Best regards,
Jw.
--
jlx@commandprompt.com
by way of pgsql-general@commandprompt.com
http://www.postgresql.info/
http://www.commandprompt.com/



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

Предыдущее
От: Andrew Sullivan
Дата:
Сообщение: Great Bridge benchmarks?
Следующее
От: Gregory Seidman
Дата:
Сообщение: Re: MacOS X Shared Buffers (SHMMAX)?