Re: Query Feromance - Mailing list pgsql-performance

From Thomas Pundt
Subject Re: Query Feromance
Date
Msg-id 200603210943.57454.mlists@rp-online.de
Whole thread Raw
In response to Re: Query Feromance  (Marco Furetto <furetto@bluestudio.it>)
Responses Re: Query Feromance  (Marco Furetto <furetto@bluestudio.it>)
Re: Query Feromance  (Marco Furetto <furetto@bluestudio.it>)
List pgsql-performance
Hi,

On Tuesday 21 March 2006 09:25, Marco Furetto wrote:
| I'm managing the db of a "Content Management environment" and I'm
| searching for a "Query analyzer" to improve performance because i don't
| know how many and what type of queries are executing on the system (for
| the "where and join" block).

as a first step, I'd enable query duration logging; in postgresql.conf
I have set

  log_min_duration_statement = 3000

this will log each query that needs more than 3 seconds to complete.

The next step would be to "explain analyze" the problematic queries.

Ciao,
Thomas

--
Thomas Pundt <thomas.pundt@rp-online.de> ---- http://rp-online.de/ ----

pgsql-performance by date:

Previous
From: Marco Furetto
Date:
Subject: Re: Query Feromance
Next
From: "Jim C. Nasby"
Date:
Subject: Re: planner with index scan cost way off actual cost, advices to tweak cost constants?