Re: Sort performance on large tables

From: Charlie Savage <cfis(at)interserv(dot)com>
To: Simon Riggs <simon(at)2ndquadrant(dot)com>
Subject: Re: Sort performance on large tables
Date: 2005-11-09 17:13:46
Message-ID: 43722E4A.8060904@interserv.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Hi Simon,

Thanks for the response Simon.

> PostgreSQL can do HashAggregates as well as GroupAggregates, just like
> Oracle. HashAggs avoid the sort phase, so would improve performance
> considerably. The difference in performance you are getting is because
> of the different plan used. Did you specifically do anything to Oracle
> to help it get that plan, or was it a pure out-of-the-box install (or
> maybe even a "set this up for Data Warehousing" install)?

It was an out-of-the-box plan with the standard database install option
(wasn't a Data Warehousing install).

> Can you let us know how high you have to set work_mem before an EXPLAIN
> (not EXPLAIN ANALYZE) chooses the HashAgg plan?

The planner picked a HashAggregate only when I set work_mem to 2097151 -
which I gather is the maximum allowed value according to a message
returned from the server.

> Please be aware that publishing Oracle performance results is against
> the terms of their licence and we seek to be both fair and legitimate,
> especially within this public discussion forum.

Sorry, I didn't realize - I'll be more vague next time.

Charlie

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Jan Kesten 2005-11-09 17:31:03 Re: Improving performance on multicolumn query
Previous Message Christopher Kings-Lynne 2005-11-09 13:19:33 Re: Improving performance on multicolumn query