Re: pgAgent crashes on failed connection

From: Heikki Linnakangas <heikki(dot)linnakangas(at)enterprisedb(dot)com>
To: Dave Page <dpage(at)pgadmin(dot)org>
Cc: Merlin Moncure <mmoncure(at)gmail(dot)com>, pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re: pgAgent crashes on failed connection
Date: 2011-09-28 19:16:48
Message-ID: 4E8372A0.2020906@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

(sorry for the late reply, this fell through the cracks..)

On 10.08.2011 11:48, Dave Page wrote:
> On Thu, Aug 4, 2011 at 8:30 PM, Merlin Moncure<mmoncure(at)gmail(dot)com> wrote:
>> On Thu, Aug 4, 2011 at 2:19 PM, Heikki Linnakangas
>> <heikki(dot)linnakangas(at)enterprisedb(dot)com> wrote:
>>> I created 100 identical pgagent jobs, with one step that simply does "SELECT
>>> pg_sleep(10)". I then forced them all to run immediately, with "UPDATE
>>> pgagent.pga_job SET jobnextrun=now();". pgagent crashed.
>>>
>>> What happened is that the when all those jobs are launched at the same time,
>>> the server ran into the max_connections limit, and pgagent didn't handle
>>> that too well. JobThread::JobThread constructor does not check for NULL
>>> result from DBConn::Get(), and passes a NULL connection to Job::Job, which
>>> tries to reference it, leading to a segfault.
>>>
>>> I propose the attached patch.
>>
>> hm, in the event that happens, is that logged in the client somehow?
>> wouldn't you want to throw an exception or something like that?
>
> I think the most straightforward way to handle this is to dump an
> error into pgagent.pga_joblog when deleting the thread. Might be a
> little ugly to pass the original error message back rather than a
> generic one though. Can you take a look Heikki?

You mean something like the attached? Works for me, but inserting an
entry in joblog for each failed attempt might create a lot of entries
there, if the problem persists.

--
Heikki Linnakangas
EnterpriseDB http://www.enterprisedb.com

Attachment Content-Type Size
fix-pgagent-segfault-on-failed-connection-2.patch text/x-diff 1.3 KB

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Merlin Moncure 2011-09-28 19:37:06 Re: pgAgent crashes on failed connection
Previous Message Merlin Moncure 2011-09-28 18:24:09 Re: pgAgent crashes on failed connection