Re: Poor performance o

Поиск
Список
Период
Сортировка
От Jim C. Nasby
Тема Re: Poor performance o
Дата
Msg-id 20060322122545.GZ15742@pervasive.com
обсуждение исходный текст
Ответ на Re: Poor performance o  ("Craig A. James" <cjames@modgraph-usa.com>)
Список pgsql-performance
On Tue, Mar 21, 2006 at 05:04:16PM -0800, Craig A. James wrote:
> Tom Lane wrote:
> >"Craig A. James" <cjames@modgraph-usa.com> writes:
> >>It looks to me like the problem is the use of nested loops when a hash
> >>join should be used, but I'm no expert at query planning.
> >
> >Given the sizes of the tables involved, you'd likely have to boost up
> >work_mem before the planner would consider a hash join.  What nondefault
> >configuration settings do you have, anyway?
>
> shared_buffers = 20000
> work_mem = 32768
> effective_cache_size = 300000
>
> This is on a 4GB machine.  Is there a guideline for work_mem that's related
> to table size?  Something like, "allow 2 MB per million rows"?

No. The general guide is "set it as large as possible without making the
machine start swapping." In some cases, you'll want to bump it up much
higher for certain queries, especially if you know those queries will
only run one at a time.
--
Jim C. Nasby, Sr. Engineering Consultant      jnasby@pervasive.com
Pervasive Software      http://pervasive.com    work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf       cell: 512-569-9461

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

Предыдущее
От: "Alejandro D. Burne"
Дата:
Сообщение: Re: Sequence Scan vs. Index scan
Следующее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: WAL logging of SELECT ... INTO command