Re: PG writes a lot to the disk

From: "Laurent Raufaste" <analogue(at)glop(dot)org>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: PG writes a lot to the disk
Date: 2008-03-20 10:48:13
Message-ID: 669dc9710803200348x64122249jd2ac5924d78a6da0@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

2008/3/19, Laurent Raufaste <analogue(at)glop(dot)org>:
> What does it writes so much in the base directory ? If it's some
> temporary table or anything, how can I locate it so I can fix the
> problem ?

Thanks for your help everybody ! I fixed the problem by doing an
ANALYZE to every table (yes I'm so noob ;) ).

The problem was that the optimiser didn't know how to run the queries
well and used millions of tuples for simple queries. For each tuple
used it was updating some bit in the table file, resulting in a huge
writing activity to that file.

After the ANALYZE, the optimiser worked smarter, used thousand time
less tuple for each query, and PG was not required to update so much
bits in the table files.

The server is now OK, thanks !

--
Laurent Raufaste
<http://www.glop.org/>

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Albe Laurenz 2008-03-20 14:38:34 Re: PG writes a lot to the disk
Previous Message Peter Koczan 2008-03-19 21:21:21 Re: Anyone using a SAN?