A Little Noise

11Nov/091

Choosing index prefix length

It can be handy to index just part of a long character column. The strings might vary enough in just the first few characters to get the same cardinality out of a partial index as a full index would give, and the partial index takes up much less disk space and memory.

Indexes in The Manual

But how long should that prefix be? Should it be the same cardinality as the original data? Within 10%?

I dunno; somebody else can blog about that decision. I'm just interested in a query that finds the number which satisfies your requirements.

I have a table called 'numbers' with an int field 'num' that just holds values 1 through several thousand.

Then:

SELECT
  num AS prefixLength,
  COUNT(DISTINCT LEFT(stringField, num)) AS prefixCardinality,
  dt.originalCardinality
FROM
  yourTable
  JOIN numbers
  JOIN (SELECT COUNT(DISTINCT stringField) AS originalCardinality FROM yourTable) AS dt
GROUP BY prefixLength
HAVING
  prefixCardinality >= .90 * originalCardinality
LIMIT 1;

Adjust the HAVING clause according to your needs.

Filed under: MySQL Leave a comment
Comments (1) Trackbacks (0)
  1. For people last names, it tends to be 3. And that actually is a good baseline, if you don’t want to spend a lot of time on it.


Leave a comment


No trackbacks yet.