vote up 0 vote down star
2

I have a Postgres table with about 5 million records and I want to find the closest match to an input key. I tried using trigrams with the pg_trgm module, but it took roughly 5 seconds per query, which is too slow for my needs.

Is there a faster way to do fuzzy match within Postgres?

flag
How are the keys structured? alpha-numeric? int only? – Dana the Sane Jun 11 at 0:53
The index is built on an attribute of type text. – Frank J Jun 11 at 5:16
Please show us the output of "explain analyze" of your query. – Tometzky Jun 11 at 10:05
explain analyze select * from fbsimple where lower(en) % 'france'; QUERY PLAN ---------------------------------------------------------- Bitmap Heap Scan on fbsimple (cost=399.17..20762.45 rows=5600 width=898) (actual time=2965.130..8722.165 rows=20 loops=1) Filter: (lower(en) % 'france'::text) -> Bitmap Index Scan on lower_trgm_idx (cost=0.00..397.77 rows=5600 width=0) (actual time=2404.114..2404.114 rows=43677 loops=1) Index Cond: (lower(en) % 'france'::text) Total runtime: 8741.179 ms (5 rows) – Frank J Jun 11 at 17:17
The index referred to in the above plan is: CREATE INDEX lower_trgm_idx ON fbsimple USING gin (lower(en) gin_trgm_ops); – Frank J Jun 11 at 17:20

3 Answers

vote up 0 vote down

Soundex is an alternative fuzzy match, but it can be very fuzzy. I would stick with the trigram matching, if you can. Is there another criterion you could use to make the trigram search work on a smaller set of results?

link|flag
vote up 0 vote down

It looks like the estimations of result size in your explain output are way off. This is not unexpected as it is very hard to estimate results of full text search well.

This causes Postgresql to use bad query plan. Try to disable bitmap scan (set enable_bitmapscan=off) and try again.

link|flag
vote up 0 vote down

Depending on what you are looking for, Postgres can also do matches on regular expressions, instead of the standard "like" syntax. It may be a better fit for you.

link|flag

Your Answer

Get an OpenID
or

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