mongodb查找重复数据过大时需要添加 allowDiskUse属性
db.district_data.aggregate([
{$group:{ _id: {id: '$id'},
uniqueIds: {$addToSet: '$_id'},
count : {$sum: 1} }},
{$match: {
count: {$gt: 1} }}],
{allowDiskUse: true}
)
网友评论