Re: ideal storage configuration

From: "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov>
To: "Samuel Gendler" <sgendler(at)ideasculptor(dot)com>, <pgsql-performance(at)postgresql(dot)org>
Subject: Re: ideal storage configuration
Date: 2010-06-29 21:30:27
Message-ID: 4C2A1FA30200002500032D1C@gw.wicourts.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Samuel Gendler <sgendler(at)ideasculptor(dot)com> wrote:

> queries are definitely taking longer than we'd like them to

> Database currently occupies 91GB on disk.

> I get no resistance when I suggest going to 64GB of RAM.

One thing that jumps out at me is that with a 91GB database, and no
pushback on buying 64GB of RAM, it may be possible to get enough RAM
to keep the *active portion* of the database entirely in RAM. (By
"active portion" I mean that part which is repeated accessed to run
these queries.) If you can do that, then your bottleneck is almost
certainly going to be CPU, so you want fast ones. I hear that the
newest Intel chips do really well on PostgreSQL benchmarks. You
want the highest speed cores you can get, with fast access to fast
RAM, even if it means fewer cores. (Someone please jump in with
details.)

Given your insert-only, partitioned data, and your heavy reporting,
I would definitely try to get to what I describe above; your disk
system might not be where you need to spend the money. Of course, I
would still get a good RAID controller with BBU cache; I just don't
think you need to worry a whole lot about boosting your spindle
count.

-Kevin

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Jignesh Shah 2010-06-30 00:48:23 Re: PostgreSQL as a local in-memory cache
Previous Message Samuel Gendler 2010-06-29 21:00:43 ideal storage configuration