Re: Got that new server, now it's time for config!

From: Greg Smith <greg(at)2ndquadrant(dot)com>
To: Carlo Stonebanks <stonec(dot)register(at)sympatico(dot)ca>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Got that new server, now it's time for config!
Date: 2010-03-23 04:12:09
Message-ID: 4BA83F99.5020607@2ndquadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Carlo Stonebanks wrote:
> So, we have the hardware, we have the O/S - but I think our config
> leaves much to be desired. Typically, our planner makes nad decisions,
> picking seq scan over index scan, where index scan has a better result.
>

You're not setting effective_cache_size, so I wouldn't expect it to ever
choose an index scan given the size of your data set. The planner
thinks that anything bigger than 128MB isn't likely to fit in RAM by
default, which favors sequential scans. That parameter should probably
be >24GB on your server, so it's off by more than two orders of magnitude.

> wal_sync_method = open_sync

This is a scary setting to be playing with on Linux when using ext3
filesystems due to general kernel bugginess in this area. See
http://archives.postgresql.org/pgsql-hackers/2007-10/msg01310.php for an
example. I wouldn't change this from the default in your position if
using that filesystem.

I'd drastically increase effective_cache_size, put wal_sync_method back
to the default, and then see how things go for a bit before tweaking
anything else. Nothing else jumped out as bad in your configuration
besides the extremely high logging levels, haven't looked at it that
carefully yet though.

--
Greg Smith 2ndQuadrant US Baltimore, MD
PostgreSQL Training, Services and Support
greg(at)2ndQuadrant(dot)com www.2ndQuadrant.us

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Scott Mead 2010-03-23 13:08:17 Re: Got that new server, now it's time for config!
Previous Message Craig James 2010-03-22 23:46:13 Re: Block at a time ...