1

我的“样本”集合中有 1 亿条记录。我想要另一个包含所有不同用户名“user.screen_name”的集合

我的 mongodb 数据库“样本”集合中有以下结构:

{
"_id" : ObjectId("515af34297c2f607b822a54b"),
"text" : "random text goes here",
"user" :
  {
    "id" : 972863366,
    "screen_name" : "xname",
    "verified" : false,
    "time_zone" : "Amsterdam",
   }
}

当我尝试“distinct('user.id).length”之类的东西时,我收到以下错误:

    "errmsg" : "exception: distinct too big, 16mb cap",

我需要一种有效的方法来拥有另一个集合,其中只有 {"user_name": "name"} 的不同用户在我的“样本”集合中。所以我可以查询这个新数据库的大小并获取不同用户的数量。(以及未来的进一步分析)

4

1 回答 1

0

我尝试了我在这里找到的解决方案,它运行良好:) .. 我会保留线程并添加我的代码以防有人需要它。

var SOURCE = db.sample;
var DEST = db.distinct;
DEST.drop();
map = function() {
  emit( this.user.screen_name , {count: 1});
}

reduce = function(key, values) {
  var count = 0;

  values.forEach(function(v) {
    count += v['count'];   
  });

  return {count: count};
};

res = SOURCE.mapReduce( map, reduce, 
    { out: 'distinct', 
     verbose: true
    }
    );

print( "distinct count= " + res.counts.output );
print( "distinct count=", DEST.count() );

问候

于 2013-04-08T18:29:21.160 回答