I have a large collection (~2.7 million documents) in mongodb, and there are a lot of duplicates. I tried running ensureIndex({id:1}, {unique:true, dropDups:true}) on the collection. Mongo churns away at it for a while before it decides that too many dups on index build with dropDups=true.
How can I add the index and get rid of the duplicates? Or the other way around, what’s the best way to delete some dups so that mongo can successfully build the index?
For bonus points, why is there a limit to the number of dups that can be dropped?
MongoDB is likely doing this to defend itself. If you
dropDupson the wrong field, you could hose the entire dataset and lock down the DB with delete operations (which are “as expensive” as writes).So the first question is why are you creating a unique index on the
idfield?MongoDB creates a default
_idfield that is automatically unique and indexed. By default MongoDB populates the_idwith anObjectId, however, you can override this with whatever value you like. So if you have a ready set of ID values, you can use those.If you cannot re-import the values, then copy them to a new collection while changing
idinto_id. You can then drop the old collection and rename the new one. (note that you will get a bunch of “duplicate key errors”, ensure that your code catches and ignores them)