Indexes on low cardinality columns

From: Vikul Khosla <vkhosla(at)gridsolv(dot)com>
To: pgsql-performance(at)postgresql(dot)org
Subject: Indexes on low cardinality columns
Date: 2009-10-16 23:36:57
Message-ID: 506532.49899.qm@web306.biz.mail.mud.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Folks,

We have just migrated from Oracle to PG.

We have a database that has approx 3 mil rows and one of the columns has a cardinality
of only 0.1% (3000 unique values).

We have to issue several queries that use this low cardinality column in a WHERE clause
as well as see this column participating in JOINS (ouch!).

A regular B-Tree index has been created on these columns.

In Oracle, we replaced the B-Tree Indexes with Bitmap indexes and saw performance go
through the roof. I know Postgres does not have Bitmap indexes,
but is there a reasonable alternative to boost performance in situations where low cardinality
columns are involved ?

I dont have the option of changing schemas - so please dont go there :)

TIA,
VK

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Greg Stark 2009-10-17 01:27:15 Re: Indexes on low cardinality columns
Previous Message Alvaro Herrera 2009-10-16 22:01:56 Re: UUID as primary key