Re: Shared memory usage

From: Greg Smith <gsmith(at)gregsmith(dot)com>
To: Max Zorloff <zorloff(at)gmail(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Shared memory usage
Date: 2007-08-29 19:26:06
Message-ID: Pine.GSO.4.64.0708291513280.646@westnet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-performance

First off, posting to two lists like you did (-general and -performance)
is frowned on here. Pick whichever is more appropriate for the topic and
post to just that one; in your case, the performance list would be more
appropriate, and I'm only replying to there.

On Sun, 26 Aug 2007, Max Zorloff wrote:

> shared_buffers is set to 60000, yet they use a minimal part of that.
> PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
> 11492 postgres 16 0 530m 72m 60m S 14 1.2 0:50.91 postmaster

Looks to me like PostgreSQL is grabbing 530MB worth of memory on your
system. run the ipcs command to see how big the block that's dedicated to
the main server is; I suspect you'll find it's at 400MB just like you
expect it to be. Here's an example from my server which has a 256MB
shared_buffers:

-bash-3.00$ ipcs
------ Shared Memory Segments --------
key shmid owner perms bytes nattch status
0x0052e2c1 1114114 postgres 600 277856256 3

Also: when you've got top running, hit the "c" key and the postmaster
processes will give you more information about what they're doing you may
find helpful.

> All the indexes and half of the database should be in the shared memory,
> is it not? Or am I completely missing what are the shared_buffers for?
> If so, then how do I put my indexes and at least a part of the data into
> memory?

You can find out what's inside the shared_buffers cache by using the
installing the contrib/pg_buffercache module against your database. The
README.pg_buffercache file in there gives instructions on how to install
it, and the sample query provided there should tell you what you're
looking for here.

> Where do I find my OS disk cache settings? I'm using Linux.

You can get a summary of how much memory Linux is using to cache data by
running the free command, and more in-depth information is available if
you look at the /proc/meminfo information. I have a paper you may find
helpful here, it has more detail in it than you need but it provides some
pointers to resources to help you better understand how memory management
in Linux works: http://www.westnet.com/~gsmith/content/linux-pdflush.htm

--
* Greg Smith gsmith(at)gregsmith(dot)com http://www.gregsmith.com Baltimore, MD

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Ben 2007-08-29 20:27:47 Re: autovacuum not running
Previous Message Jeff Amiel 2007-08-29 19:17:19 Re: SSL and crash woes.

Browse pgsql-performance by date

  From Date Subject
Next Message Mark Mielke 2007-08-29 19:54:05 Re: Transaction Log
Previous Message mbguy2000-1 2007-08-29 19:24:34 Transaction Log