Re: PostgreSQL performance issues

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: PostgreSQL performance issues
Дата
Msg-id b42b73150608300808j29a18519g885086f7cb6876f6@mail.gmail.com
обсуждение исходный текст
Ответ на Re: PostgreSQL performance issues  (Willo van der Merwe <willo@studentvillage.co.za>)
Список pgsql-performance
On 8/30/06, Willo van der Merwe <willo@studentvillage.co.za> wrote:
> This was just an example. All queries have slowed down. Could it be that
> I've reached some cut-off and now my disk is thrashing?
>
> Currently the load looks like this:
> Cpu0  : 96.8% us,  1.9% sy,  0.0% ni,  0.3% id,  0.0% wa,  0.0% hi,  1.0% si
> Cpu1  : 97.8% us,  1.6% sy,  0.0% ni,  0.3% id,  0.0% wa,  0.0% hi,  0.3% si
> Cpu2  : 96.8% us,  2.6% sy,  0.0% ni,  0.3% id,  0.0% wa,  0.0% hi,  0.3% si
> Cpu3  : 96.2% us,  3.2% sy,  0.0% ni,  0.3% id,  0.0% wa,  0.0% hi,  0.3% si
>
I don't think so, it looks like you are cpu bound.  Your server has a
(fairly high) budget of records per second it can crunch through.  You
have hit that limit and backpressure is building up and server load is
escalating.  This almost certainly due to inefficient sql, which is
very easy to do especially if you are using some type of middleware
which writes the sql for you.  The trick here would be to turn all sql
logging on and find out where your budget is getting spent.  solving
the problem may be a simple matter of adding an index or crafting a
stored procedure.

merlin

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

Предыдущее
От: Willo van der Merwe
Дата:
Сообщение: Re: PostgreSQL performance issues
Следующее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: performance problems.