Re: connections problem

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: ivan <iv(at)psycho(dot)pl>
Cc: "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: connections problem
Date: 2003-12-26 20:43:07
Message-ID: 2292.1072471387@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

ivan <iv(at)psycho(dot)pl> writes:
> the error is : could not fork new process for connection: Resource
> temporarily unavailable

We could have saved some time if you'd spelled out the full error
message to begin with.

This is undoubtedly a kernel-imposed restriction you are running into.
I'm not sure if the failure is related to sheer number of processes,
number of open files, or RAM/swap space, but one way or another you are
trying to create more processes than your kernel will support.

It seems moderately unlikely that twenty or thirty Postgres processes
would by themselves be able to run the kernel out of resources (although
if the problem is related to number of open files, reducing
max_files_per_process might help). What else do you have running on
this machine?

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Eric Ridge 2003-12-26 20:53:34 Re: fulltext searching via a custom index type
Previous Message Tom Lane 2003-12-26 20:29:01 Re: connections problem