Re: Configuration settings (shared_buffers, etc) in Linux: puzzled

From: Greg Smith <gsmith(at)gregsmith(dot)com>
To: Rick Schumeyer <rschumeyer(at)ieee(dot)org>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Configuration settings (shared_buffers, etc) in Linux: puzzled
Date: 2008-01-24 18:52:49
Message-ID: Pine.GSO.4.64.0801241349420.7217@westnet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Thu, 24 Jan 2008, Rick Schumeyer wrote:

> On a linux box (Linux db1 2.6.18.8-md #1 SMP Wed May 23 17:21:37 EDT 2007
> i686 GNU/Linux)
> I edited postgresql.conf and changed:
>
> shared_buffers = 5000 work_mem = 16384
> max_stack_depth = 4096
>
> and then restarted postgres. The puzzling part is that postgres actually
> started. When I have done this on other boxes, I had to edit kernel settings
> to allow for more shared memory.

You can confirm whether the settings are actually taking like this:

$ psql
Welcome to psql 8.2.4, the PostgreSQL interactive terminal.

postgres=# show shared_buffers;
shared_buffers
----------------
256MB
(1 row)

Since your shared_buffers setting should probably be in the hundreds of
megabytes range if you want good performance, you may need to update your
kernel settings anyway, but the above will let you see what the server is
actually starting with.

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

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Stephen Denne 2008-01-24 23:46:20 8.3rc1 Out of memory when performing update
Previous Message Greg Smith 2008-01-24 18:49:34 Re: Postgres 8.2 memory weirdness