Re: settings input for upgrade

From: Scott Marlowe <scott(dot)marlowe(at)gmail(dot)com>
To: Midge Brown <midgems(at)sbcglobal(dot)net>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: settings input for upgrade
Date: 2011-08-21 04:01:21
Message-ID: CAOR=d=1+YzrjxcEnQj_nJ55qx0KDP3y5BTKHaeGOwH8e5VwuKQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Thu, Aug 18, 2011 at 3:55 PM, Midge Brown <midgems(at)sbcglobal(dot)net> wrote:
> Here are the changes I made to postgres.conf. The only differences between
> the conf file for DB1 and those for DB2 & 3 are the port and
> effective_cache_size (which I made slightly smaller -- 8 GB instead of 10 --
> for the 2 write-heavy DBs). The 600 max connections are often idle and don't
> get explicitly closed in the application. I'm looking at connection pooling
> as well.

>  work_mem = 128MB

I'd lower this unless you are certain that something like 16MB just
isn't gonna get similar performance. Even with mostly connections
idle, 128M is a rather large work_mem. Remember it's per sort, per
connection. It can quickly cause the kernel to dump file cache that
keeps the machine running fast if a couple dozen connections run a
handful of large sorts at once. What happens is that while things run
smooth when there's low to medium load, under high load the machine
will start thrashing trying to allocate too much work_mem and then
just slow to a crawl.

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Midge Brown 2011-08-21 05:44:58 Re: settings input for upgrade
Previous Message Midge Brown 2011-08-20 18:33:45 Re: settings input for upgrade