Re: Abnormal performance difference between Postgres and MySQL

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: Abnormal performance difference between Postgres and MySQL
Дата
Msg-id dcc563d10902251228k7767f3dfpe9d5a9f5ee00512@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Abnormal performance difference between Postgres and MySQL  (Farhan Husain <russoue@gmail.com>)
Список pgsql-performance
On Wed, Feb 25, 2009 at 12:05 PM, Farhan Husain <russoue@gmail.com> wrote:
>
> On Wed, Feb 25, 2009 at 12:58 PM, Robert Haas <robertmhaas@gmail.com> wrote:
>>
>> Just start up psql and type:
>>
>> show work_mem;
>
> I did it, it does not show anything.

Did you remember the ; symbol?

> Here is what I have got from the config
> file:
>
> shared_buffers = 32MB                   # min 128kB or max_connections*16kB
>                                         # (change requires restart)

Assuming your machine has more than a few hundred megs of ram in it,
this is kinda small.  Generally setting it to 10 to 25% of total
memory is about right.

> work_mem = 1792MB                               # min 64kB

That's crazy high.  work_mem is the amount of memory a single sort can
use.  Each query can have multiple sorts.  So, if you have 10 users
running 10 sorts, you could use 100*1792MB memory.

Look to set it into the 1 to 16Meg.  If testing shows a few queries
can do better with more work_mem, then look at setting it higher for
just that one connection.

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

Предыдущее
От: Robert Haas
Дата:
Сообщение: Re: Abnormal performance difference between Postgres and MySQL
Следующее
От: Farhan Husain
Дата:
Сообщение: Re: Abnormal performance difference between Postgres and MySQL