Re: Am I wasting my time with partitions?

From: Richard Huxton <dev(at)archonet(dot)com>
To: Stuart Brooks <stuartb(at)cat(dot)co(dot)za>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Am I wasting my time with partitions?
Date: 2008-02-19 13:48:12
Message-ID: 47BADE1C.10903@archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Stuart Brooks wrote:
> It seems to me that postgresql doesn't use indexes when being asked for
> an ordered result sets from a partitioned table. I have an application
> where this is critical, but I was hoping to use partitions because of
> the ease of rotating out old rows.

> metadb=> explain select * from l order by amount,lineitem_key limit 10;
> QUERY PLAN
> -> Seq Scan on l (cost=0.00..16.90 rows=690 width=88)
> -> Seq Scan on l1 l (cost=0.00..4951.00
> rows=250000 width=49)
> -> Seq Scan on l2 l (cost=0.00..5653.66
> rows=285466 width=49)

> NB. Just addressing one of the inherited tables works fine.
>
> metadb=> explain select * from l1 order by amount,lineitem_key limit 10;

Well, you don't have an index it can use to find the smallest
(amount,lineitem) across all of lX. If PG was smart enough to figure out
that it only needed to check l1, then you do. Unfortunately it isn't.

If you add the constraint you use to partition by, does that help you?

--
Richard Huxton
Archonet Ltd

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Richard Huxton 2008-02-19 13:51:10 Re: SELECT DISTINCT
Previous Message Robins Tharakan 2008-02-19 12:49:02 UPDATE with ORDER BY