Re: [GENERAL] Error while starting postgreSQL service

From: Magnus Hagander <magnus(at)hagander(dot)net>
To: Richard Huxton <dev(at)archonet(dot)com>
Cc: "Bebarta, Simanchala" <Simanchala(dot)Bebarta(at)in(dot)unisys(dot)com>, PG-General Mailing List <pgsql-general(at)postgresql(dot)org>, pgsql-admin(at)postgresql(dot)org
Subject: Re: [GENERAL] Error while starting postgreSQL service
Date: 2007-11-19 17:20:20
Message-ID: 1195492820.7785.15.camel@mha-laptop.clients.sollentuna.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-general


On Mon, 2007-11-19 at 10:33 +0000, Richard Huxton wrote:
> Bebarta, Simanchala wrote:
> >>
> >> Does the problem go away when you put shared_buffers back to a lower
> >> number?
> >>
> > Yes, when I set the value to 1300 MB, everything goes fine. Any value
> > higher than this value does not allow me to start the service.
>
> It's quite possible that you can't go any higher (I don't know enough
> about Windows' memory handling). It's quite possible you don't want to
> anyway.
> Don't forget, you want to allow space for the following:
> - Windows itself
> - Other applications
> - Each backend of PostgreSQL will need its own memory when running queries.
> - Filesystem caching.
>
> PostgreSQL isn't like some other RDBMS where you dedicate a big block of
> memory just to it.

Yeah, going above 1300Mb shared_buffer is certainly going to be a
problem. You'll run out of address space in the processes (limited to
2Gb, but that's including code and OS overhead).

That said, you're also likely to have a lot of other reasons for having
it lower. We've seen a lot of cases where putting shared_buffers as low
as possible gives for a lot better performance, and I've yet to see a
single case where having shared_buffers very high has helped.

(Before someone comments on it, the previous paragraph valid for win32
only, of course)

//Magnus

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Kevin Kempter 2007-11-19 22:24:47 Get a list of ALL tables
Previous Message Scott Marlowe 2007-11-19 16:58:52 Re: [GENERAL] Error while starting postgreSQL service

Browse pgsql-general by date

  From Date Subject
Next Message mailtolouis2020-postgres 2007-11-19 17:24:31 Postgres file structure doubt
Previous Message Tom Lane 2007-11-19 17:16:29 Re: Timestamp comparison with string in some special cases