From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Stefan Holzheu <stefan(dot)holzheu(at)bitoek(dot)uni-bayreuth(dot)de> |
Cc: | pgsql-admin(at)postgresql(dot)org |
Subject: | Re: Problems with C Language Functions after upgrade to 7.3.2 |
Date: | 2003-04-08 16:42:22 |
Message-ID: | 3485.1049820142@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
Stefan Holzheu <stefan(dot)holzheu(at)bitoek(dot)uni-bayreuth(dot)de> writes:
> In 7.1.3 triggers worked fine. With 7.3.2 triggers work in most cases
> but in some cases execution fails at fork or exec.
>> Fails how? What's the error code exactly?
> fork: errno 2 /* No such file or directory */
> exec: errno 11 /* Try again */
Hmm. You mean the other way round, I assume, because ENOENT surely
makes no sense for fork().
System resource exhaustion problems, maybe? EAGAIN for fork() strongly
suggests that. Perhaps you are running into a ulimit-like limit, such
as max processes per user? Not sure about ENOENT --- are you giving an
absolute path to locate the program to execute?
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Jeff Boes | 2003-04-08 17:41:16 | VACUUM slow on small table |
Previous Message | Stefan Holzheu | 2003-04-08 16:28:36 | Re: Problems with C Language Functions after upgrade to 7.3.2 |