search

Home  >  Q&A  >  body text

mongodb - mongo聚合查询使用$out输出,执行的是替换操作而不是append操作

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

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

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

PHPzPHPz2757 days ago802

reply all(1)I'll reply

  • 滿天的星座

    滿天的星座2017-05-02 09:20:44

    Starting from 2.6, the return value of aggregation is a cursor. Since it is a cursor, you are not required to cache the entire result set in memory on the client before operating it. The straightforward idea is to traverse the cursor and insert it into the target collection one by one. For example, in the shell:

    db.coll.aggregate([...]).forEach(function(doc) {
      db.target_coll.save(doc);
    });

    reply
    0
  • Cancelreply