Re: Hardware suggestions for maximum read performance

From: Scott Marlowe <scott(dot)marlowe(at)gmail(dot)com>
To: Greg Smith <greg(at)2ndquadrant(dot)com>
Cc: Mike McCann <mccann(at)mbari(dot)org>, "pgsql-performance(at)postgresql(dot)org" <pgsql-performance(at)postgresql(dot)org>, Yuri Levinsky <yuril(at)celltick(dot)com>, Julien Cigar <jcigar(at)ulb(dot)ac(dot)be>, Arjen van der Meijden <acmmailing(at)tweakers(dot)net>, Jeff Janes <jeff(dot)janes(at)gmail(dot)com>
Subject: Re: Hardware suggestions for maximum read performance
Date: 2013-05-20 03:57:32
Message-ID: CAOR=d=2NN1M0vTx=RWOBdhrGbEyBJ06vnMKb5+x7hXa826EXxg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Sun, May 19, 2013 at 8:44 PM, Greg Smith <greg(at)2ndquadrant(dot)com> wrote:
> On 5/13/13 6:36 PM, Mike McCann wrote:
>>
>> stoqs_march2013_s=# explain analyze select * from
>> stoqs_measuredparameter order by datavalue;
>>
>> QUERY PLAN
>>
>> ------------------------------------------------------------------------------------------------------------------------------------------
>> Sort (cost=422106.15..430560.68 rows=3381814 width=20) (actual
>> time=2503.078..2937.130 rows=3381814 loops=1)
>> Sort Key: datavalue
>> Sort Method: quicksort Memory: 362509kB
>> -> Seq Scan on stoqs_measuredparameter (cost=0.00..55359.14
>> rows=3381814 width=20) (actual time=0.016..335.745 rows=3381814
>> loops=1)
>> Total runtime: 3094.601 ms
>> (5 rows)
>>
>> I tried changing random_page_cost to from 4 to 1 and saw no change.
>
>
> Have you tried putting an index by datavalue on this table? Once you've
> done that, then changing random_page_cost will make using that index look
> less expensive. Sorting chews through a good bit of CPU time, and that's
> where all of your runtime is being spent at--once you increase work_mem up
> very high that is.

This++ plus cluster on that index if you can.

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Kevin Grittner 2013-05-20 14:12:20 Re: statistics target for columns in unique constraint?
Previous Message Greg Smith 2013-05-20 03:10:08 Re: Reliability with RAID 10 SSD and Streaming Replication