Re: Is this true? - Mailing list pgsql-performance

From Jeff Davis
Subject Re: Is this true?
Date
Msg-id 1181165824.7660.157.camel@dogma.v10.wvs
Whole thread Raw
In response to Is this true?  ("Chris Hoover" <revoohc@gmail.com>)
List pgsql-performance
On Wed, 2007-06-06 at 16:58 -0400, Chris Hoover wrote:
> Question,
>
> Does (pg_stat_get_db_blocks_fetched(oid)-pg_stat_get_db_blocks_hit
> (oid)*8) = number of KB read from disk for the listed database since
> the last server startup?

That will give you the number of blocks requested from the OS. The OS
does it's own caching, and so many of those reads might come from the OS
buffer cache, and not the disk itself.

Also, if you're concerned with the number since the last server restart,
make sure you have stats_reset_on_server_start set appropriately.

Regards,
    Jeff Davis


pgsql-performance by date:

Previous
From: Scott Marlowe
Date:
Subject: Re: VERY slow queries at random
Next
From: James Mansion
Date:
Subject: Re: LIKE search and performance