I have created a table T , which has an index created on a column C (btree index) , but when i run the select query this index is not being used.

Ex:

Explain select * from T where C='xxx'

This searches in all the segments sequentially , without considering the index which i have created.

I have used the following flags

enable_seqscan = off
enable_bitmapscan = off
enable_indexscan = on

Am I missing anything?Kindly explain?

Thanks Ganesh.R

link|improve this question

0% accept rate
Please show us the execution plan, ideally from an EXPLAIN ANALZYE. You can paste it to explain.depesz.com and post the link to your plan, because then it will be easier to read. Btw: what do you mean with "all the segments"? – a_horse_with_no_name Jul 27 '11 at 14:17
feedback

2 Answers

It's possible that the query optimizer, for whatever reason, thinks that it's better not to use the index. Also, you may need to do an ANALYZE on the table if the statistical metadata is out of date. See this article (or others like it) for more detailed information.

link|improve this answer
Thank you very much it helped a lot :-) – Ganesh R Aug 4 '11 at 3:21
You're welcome. If the answer helped, then please consider accepting the answer. – Jack Maney Aug 4 '11 at 10:24
feedback

Unlike traditional RDBMSs, an index may not be the preferable way to access data in Greenplum.

Greenplum is tuned out of the box to prefer table scans over index scans, and you have to do a lot of tweaking to change that. You can set additional parameters to help the GP optimizer choose indexes including set enable_nestloop on, cpu_index_tuple_cost and others. Check Appendix D of the GP Admin guide for a full set of tunable parameters.

Also, how do you have the data distributed? That can play a part in how the optimizer is choosing to process your query.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.