`
mvj3
  • 浏览: 24141 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Mongodb删除重复数据

阅读更多
统计分析需要跑各个时间粒度的任务,如果异常中断后重新选择某个时间删除后再跑的时候,有时候还是会有重复的统计数据。

在mongodb中建立唯一索引时加上dropDups选项可以解决此问题:

A unique index cannot be created on a key that has pre-existing duplicate values. If you would like to create the index anyway, keeping the first document the database indexes and deleting all subsequent documents that have duplicate values, add the dropDups option

http://www.mongodb.org/display/DOCS/indexes#Indexes-dropDups

Mongoid对应的参数配置是 , :unique => true, :background => true, :dropDups => true
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics