Re: slow queries, possibly disk io - Mailing list pgsql-performance

From Tom Lane
Subject Re: slow queries, possibly disk io
Date
Msg-id 11908.1117550013@sss.pgh.pa.us
Whole thread Raw
In response to Re: slow queries, possibly disk io  (Josh Close <narshe@gmail.com>)
List pgsql-performance
Josh Close <narshe@gmail.com> writes:
> There is 2 gigs of mem in this server. Here are my current settings.

> max_connections = 100
> shared_buffers = 50000
> sort_mem = 4096
> vacuum_mem = 32768
> effective_cache_size = 450000

> Shared buffers is set to 10% of total mem. Effective cache size is 90% of mem.

Uh, shared_buffers and effective_cache_size are both measured in pages,
which are 8K apiece unless you built with a nondefault BLCKSZ.  So the
above calculations are off ...

> Is there anything that can be done to have postgres grab more from
> memory rather than disk?

It's not so much a matter of what Postgres will do as what the kernel
will do.  Check to see if there is some limit on how much memory the
kernel will set aside for disk buffers.  Plain old "top" will generally
tell you what is going on, though interpreting its output sometimes
requires some wizardry.

            regards, tom lane

pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: very large table
Next
From: Josh Close
Date:
Subject: Re: slow queries, possibly disk io