Re: PL/Perl Performance Problems - Mailing list pgsql-general

From Alex -
Subject Re: PL/Perl Performance Problems
Date
Msg-id SNT135-w48B25DA38EE5EC772EFF55CF850@phx.gbl
Whole thread Raw
In response to Re: PL/Perl Performance Problems  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: PL/Perl Performance Problems  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
I actually looked at that too, but there is no swapping going on. The system also has 16GB memory allocated to postgres and during the processing there is not other process really active.

> To: aintokyo@hotmail.com
> CC: pgsql-general@postgresql.org
> Subject: Re: [GENERAL] PL/Perl Performance Problems
> Date: Fri, 18 Dec 2009 15:25:16 -0500
> From: tgl@sss.pgh.pa.us
>
> Alex - <aintokyo@hotmail.com> writes:
> > Now here is what I noticed.
> > a) if I run it in the morning, processing starts very slow, but after a few thousand records it will speed up until I actually get about 100 records processed per millisecond.
> > b) it sometime takes about 5-10k records till i really get up to speed. meaning the first few hundreds can take up to 1-2 minutes.
> > c) if i run the same job a few hrs later (we run it twice a day) it generally runs much faster. Even though we added more data to one of the big tables it selects from.
> > d) this however starts again the next day. ( not much data has been changed between the 2nd run of the day and the first one of the next one, but yet it will start crawling again.
>
> What this sounds like is it's fast when most of the data has been
> swapped in to kernel disk cache, and slow when the data actually has to
> be read from disk. Probably the reason it's slow in the morning is
> there are some unrelated tasks that run overnight and cause memory to
> get filled with all their data instead of the PG tables. You could
> check this theory by watching with vmstat or similar tool to see how
> much actual disk I/O is happening in the slow and fast cases.
>
> regards, tom lane
>
> --
> Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general


Check out Domain Radar NOW! A world FIRST in property search has arrived!

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: PL/Perl Performance Problems
Next
From: Tom Lane
Date:
Subject: Re: PL/Perl Performance Problems