Re: Need help in setting optimal configuration for a huge database.

Поиск
Список
Период
Сортировка
От Steinar H. Gunderson
Тема Re: Need help in setting optimal configuration for a huge database.
Дата
Msg-id 20051022215749.GB22328@samfundet.no
обсуждение исходный текст
Ответ на Need help in setting optimal configuration for a huge database.  (Kishore B <kishorebh@gmail.com>)
Ответы Re: Need help in setting optimal configuration for a huge database.
Список pgsql-performance
[please send replies to the list, not to me directly]

On Sun, Oct 23, 2005 at 03:19:39AM +0530, Kishore B wrote:
>  *You definitely want to upgrade this if you can.
>
> > Memory : 2 GB
> *
> We can move upto 12 GB if need to be.

I was referring to your PostgreSQL version, not your RAM. More RAM is almost
always an improvement, but for your data set, 2GB sounds quite good. (700k
rows is not really a “huge database”, BTW -- I've seen people here have
several billion rows a _day_.)

>  For now, let us set the configuraiton parameters for 2GB.
> I failed to mention earlier, that we have a dedicated server for database.
>  Can I set the effective_cache_size to 200000?

Yes, that should work fine.

> Can I set the sort_mem size to 4096?

This depends a bit on the queries you're running. Remember that for each and
every sort you do, one of these (measured in 8kB buffers) will get allocated.
Some tuning of your queries against this would probably be useful.

>   Will the performance suffer, if I set these parameters too high?

Yes, you can easily run into allocating too much RAM with too high sort_mem,
which could kill your performance. Overestimating effective_cache_size is
AFAIK not half as bad, though -- it is merely a hint to the planner, it does
not actually allocate memory.

/* Steinar */
--
Homepage: http://www.sesse.net/


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

Предыдущее
От: "Karl O. Pinc"
Дата:
Сообщение: Re: Need help in setting optimal configuration for a huge
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Need help in setting optimal configuration for a huge database.