Re: PG writes a lot to the disk

From: Gregory Stark <stark(at)enterprisedb(dot)com>
To: "Laurent Raufaste" <analogue(at)glop(dot)org>
Cc: <pgsql-performance(at)postgresql(dot)org>
Subject: Re: PG writes a lot to the disk
Date: 2008-03-21 13:25:43
Message-ID: 87prtoqkdk.fsf@oxford.xeocode.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

"Laurent Raufaste" <analogue(at)glop(dot)org> writes:

> All this make me think that PG was setting some bit on every row it
> used, which caused this massive write activity (3MB/s) in the table
> files. I'm talking about approx. 50 SELECT per second for a single
> server.

Well that's true it does. But only once per row. So analyze would have set the
bit on every row. You could do the same thing with something ligter like
"select count(*) from <table>".

Tom's thinking was that you would only expect a high update rate for a short
time until all those bits were set.

Slony's inserts, updates, and deletes count as updates to the table as well.

--
Gregory Stark
EnterpriseDB http://www.enterprisedb.com
Ask me about EnterpriseDB's RemoteDBA services!

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Laurent Raufaste 2008-03-21 13:45:28 Re: PG writes a lot to the disk
Previous Message Gregory Stark 2008-03-21 13:22:26 Re: PostgreSQL NetApp and NFS