Re: Low CPU Usage

From: "Heikki Linnakangas" <heikki(at)enterprisedb(dot)com>
To: <brauagustin-susc(at)yahoo(dot)com(dot)ar>
Cc: <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Low CPU Usage
Date: 2007-09-19 17:52:51
Message-ID: 46F161F3.1070601@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

brauagustin-susc(at)yahoo(dot)com(dot)ar wrote:
> Recently I have installed a brand new server with a Pentium IV 3.2 GHz, SATA Disk, 2GB of Ram in Debian 4.0r1 with PostgreSQL 8.2.4 (previously a 8.1.9).
> I have other similar server with an IDE disk, Red Hat EL 4 and PostgreSQL 8.2.3
>
> I have almost the same postgresql.conf in both servers, but in the new one (I have more work_mem than the other one) things go really slow. I began to monitor i/o disk and it's really ok, I have test disk with hdparm and it's 5 times faster than the IDE one.
> Running the same queries in both servers in the new one it envolves almost 4 minutes instead of 18 seconds in the old one.
> Both databases are the same, I have vacuum them and I don't know how to manage this issue.

Have you ANALYZEd all tables?

Try running EXPLAIN ANALYZE on the query on both servers, and see if
they're using the same plan.

> The only weird thing is than in the older server running the query it uses 30% of CPU instead of 3 o 5 % of the new one!!!

That implies that it's doing much more I/O on the new server, so the CPU
just sits and waits for data to arrive from the disk.

That does iostat say about disk utilization on both servers?

--
Heikki Linnakangas
EnterpriseDB http://www.enterprisedb.com

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Mark Lewis 2007-09-19 18:03:06 Re: Low CPU Usage
Previous Message brauagustin-susc 2007-09-19 17:38:13 Low CPU Usage