Re: Query only slow on first run

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: cluster <skrald(at)amossen(dot)dk>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Query only slow on first run
Date: 2007-11-29 15:32:23
Message-ID: 13658.1196350343@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

cluster <skrald(at)amossen(dot)dk> writes:
>> You're essentially asking for a random sample of data that is not
>> currently in memory. You're not going to get that without some I/O.

> No, that sounds reasonable enough. But do you agree with the statement
> that my query will just get slower and slower over time as the number of
> posts increases while the part having status = 1 is constant?

No, not as long as it sticks to that plan. The time's basically
determined by the number of aggregate rows the LIMIT asks for,
times the average number of "post" rows per aggregate group.
And as far as you said the latter number is not going to increase.

regards, tom lane

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Tom Lane 2007-11-29 15:45:31 Re: TB-sized databases
Previous Message Brad Nicholson 2007-11-29 15:10:54 7.4 Checkpoint Question