Re: TB-sized databases

Поиск
Список
Период
Сортировка
От Gregory Stark
Тема Re: TB-sized databases
Дата
Msg-id 878x4hmfd4.fsf@oxford.xeocode.com
обсуждение исходный текст
Ответ на Re: TB-sized databases  (Simon Riggs <simon@2ndquadrant.com>)
Ответы Re: TB-sized databases  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: TB-sized databases  ("Trevor Talbot" <quension@gmail.com>)
Список pgsql-performance
"Simon Riggs" <simon@2ndquadrant.com> writes:

> On Wed, 2007-11-28 at 14:48 +0100, Csaba Nagy wrote:
>
>> In fact an even more useful option would be to ask the planner to throw
>> error if the expected cost exceeds a certain threshold...
>
> Well, I've suggested it before:
>
> statement_cost_limit on pgsql-hackers, 1 March 2006
>
> Would people like me to re-write and resubmit this patch for 8.4?
>
> Tom's previous concerns were along the lines of "How would know what to
> set it to?", given that the planner costs are mostly arbitrary numbers.

Hm, that's only kind of true.

Since 8.mumble seq_page_cost is itself configurable meaning you can adjust the
base unit and calibrate all the parameters to be time in whatever unit you
choose.

But even assuming you haven't so adjusted seq_page_cost and all the other
parameters to match the numbers aren't entirely arbitrary. They represent time
in units of "however long a single sequential page read takes".

Obviously few people know how long such a page read takes but surely you would
just run a few sequential reads of large tables and set the limit to some
multiple of whatever you find.

This isn't going to precise to the level of being able to avoid executing any
query which will take over 1000ms. But it is going to be able to catch
unconstrained cross joins or large sequential scans or such.

--
  Gregory Stark
  EnterpriseDB          http://www.enterprisedb.com
  Ask me about EnterpriseDB's RemoteDBA services!

В списке pgsql-performance по дате отправления:

Предыдущее
От: cluster
Дата:
Сообщение: Re: Query only slow on first run
Следующее
От: Brad Nicholson
Дата:
Сообщение: 7.4 Checkpoint Question