Re: queries with lots of UNIONed relations - Mailing list pgsql-performance

From Tom Lane
Subject Re: queries with lots of UNIONed relations
Date
Msg-id 19302.1294938802@sss.pgh.pa.us
Whole thread Raw
In response to queries with lots of UNIONed relations  (Jon Nelson <jnelson+pgsql@jamponi.net>)
Responses Re: queries with lots of UNIONed relations
List pgsql-performance
Jon Nelson <jnelson+pgsql@jamponi.net> writes:
> In the former case, the query plan was a bitmap heap scan for each
> table. Then those results were Appended, Sorted, Uniqued, Sorted
> again, and then returned.

> In the latter, before Appending, each table's results were run through
> HashAggregate.

Probably the reason it did that is that each individual de-duplication
looked like it would fit in work_mem, but a single de-duplication
didn't.  Consider raising work_mem, at least for this one query.

            regards, tom lane

pgsql-performance by date:

Previous
From: Jon Nelson
Date:
Subject: queries with lots of UNIONed relations
Next
From: Jon Nelson
Date:
Subject: Re: queries with lots of UNIONed relations