Re: Postgres not using indices defined on my table with certain queries using "in"

From: "s anwar" <sanwar(at)gmail(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: Postgres not using indices defined on my table with certain queries using "in"
Date: 2007-07-05 19:59:17
Message-ID: 3e3c86f90707051259p51966428k805717b74d448c7c@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Tom:

Thank you for your response. The actual table that will have 400
million rows. The last time I created an index on an integer field on
a table that size it was too big for Postgres to use (to high a cost
of using the index). Hence, Postgres reverted back to sequential scan.
I would like to figure out a better way of partitioning my index such
that it still remains useful for Postgres. I will appreciate any tips
that you can provide in this regard. Thanks.

Saadat.

On 7/4/07, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> "s anwar" <sanwar(at)gmail(dot)com> writes:
> > The two queries blow require radically different query times 1600ms vs 10ms:
>
> Try not to be so fancy with a bunch of somewhat-overlapping partial indexes.
> The planner is not so smart as you, and will not always be able to prove
> to itself that it can use these indexes. A single, non-partial index on
> ock would perform at least as well as this hodgepodge.
>
> regards, tom lane
>

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Tom Lane 2007-07-05 20:35:29 Re: Postgres not using indices defined on my table with certain queries using "in"
Previous Message Tom Lane 2007-07-05 19:30:33 Re: subquery with more than one column