Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I run this command:

db.ads_view.aggregate({$group: {_id : "$campaign", "action" : {$sum: 1} }});

ads_view : 500 000 documents.

this queries take 1.8s . this is its profile : https://gist.github.com/afecec63a994f8f7fd8a

indexed : db.ads_view.ensureIndex({campaign: 1});

But mongodb don't use index. Anyone know if can aggregate framework use indexes, how to index this query.

share|improve this question

1 Answer

up vote 1 down vote accepted

The $group operator is not one of the ones that will use an index currently. The list of operators that do (as of 2.2) are:

$match
$sort
$limit
$skip

From here:

http://docs.mongodb.org/manual/applications/aggregation/#pipeline-operators-and-indexes

Based on the number of yields going on in the gist, I would assume you either have a very active instance or that a lot of this data is not in memory when you are doing the group (it will yield on page fault usually too), hence the 1.8s

Note that even if $group could use an index, and your index covered everything being grouped, it would still involve a full scan of the index to do the group, and would likely not be terrible fast anyway.

share|improve this answer
thanks, then can't mongodb index group queries ? – meotimdihia Nov 20 '12 at 3:35
no, group will not use an index. I'm not sure you saw the note I added - there would not necessarily be an advantage to using an index here - you would just be switching a table scan for a full index scan. – Adam C Nov 20 '12 at 4:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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