mongodb - mongo聚合查询使用$out输出,执行的是替换操作而不是append操作
PHPz
PHPz 2017-05-02 09:18:44
0
1
812

mongo聚合查询遇到的一个问题

当前对mongo数据库的一张表做一些聚合查询的操作,考虑到数据量太大,从数据库查寻出来结果还是需要插入到数据库,故决定,将查询结果插入到一个临时的集合中,使用mongo的$out操作。根据业务需求,需要执行三次这样的聚合查询,测试发现$out输出到新的集合是,执行替换操作,而不是append操作,以下是官网解释:

  • The $out operation creates a new collection in the current database if one does not already exist.

  • If the collection specified by the $out operation already exists, then upon completion of the aggregation, the $out stage atomically replaces the existing collection with the new results collection. The $out operation does not change any indexes that existed on the previous collection.

现在我依然有这样的需求,将多次聚合的结果放在一张表中,该怎么做?

PHPz
PHPz

学习是最好的投资!

全部回复(1)
滿天的星座

从2.6开始aggregation的返回值是一个游标。既然是游标,就不要求你在客户端把整个结果集缓存到内存中再操作,很直接的想法就是遍历这个游标,一条一条插进目标集合就可以了。比如在shell中:

db.coll.aggregate([...]).forEach(function(doc) {
  db.target_coll.save(doc);
});
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板