Re: external sort performance - Mailing list pgsql-performance

From Josh Berkus
Subject Re: external sort performance
Date
Msg-id 4EC5AACD.9010802@agliodbs.com
Whole thread Raw
In response to Re: external sort performance  (Jon Nelson <jnelson+pgsql@jamponi.net>)
List pgsql-performance
> The first log statement is expected. The second log statement, however, isn't.
> The total table size is (as noted earlier) about 5GB and, in fact, fit
> into one nice hash table (approx 15GB in size).
> Is the sorting that is necessary for index creation unable to use a
> hash table? (This is a standard btree index).

How big is the source table?  You're not sorting the *result* table,
you're sorting the source table if you're summarizing it.

If the original source data is only 5GB, I'd check your code for a
cartesian join.

--
Josh Berkus
PostgreSQL Experts Inc.
http://pgexperts.com

pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: external sort performance
Next
From: Ben Chobot
Date:
Subject: index usage for min() vs. "order by asc limit 1"