I have a table "test" containing millions of entries. Each row contains a floating point "feature" and a "count" how often this feature is present in item "id". The primary key for this table is the combination of "id" and "feature", i.e. every item may have multiple features. There are usually a couple of hundred to a couple of thousand feature entries per item id.
create table test
(
id int not null,
feature double not null,
count int not null
);
The task is to find the 500 most similar items to a given reference item. Similarity is measured in number of identical feature values in both items. The query I have come up with is quoted below, but despite properly using indices its execution plan still contains "using temporary" and "using filesort", giving unacceptable performance for my use case.
select
t1.id,
t2.id,
sum( least( t1.count, t2.count )) as priority
from test as t1
inner join test as t2
on t2.feature = t1.feature
where t1.id = {some user supplied id value}
group by t1.id, t2.id
order by priority desc
limit 500;
Any ideas on how to improve on this? The schema can be modified and indices added as needed.
SHOW CREATE TABLE test? – Quassnoi Nov 30 '10 at 11:22test(idint(11) NOT NULL,featuredouble NOT NULL,countint(11) NOT NULL, KEYidx_one(feature), KEYidx_two(id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8' – BuschnicK Nov 30 '10 at 15:32SELECT COUNT(DISTINCT id) FROM testreturn? – Quassnoi Dec 1 '10 at 11:34