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.
现在我依然有这样的需求,将多次聚合的结果放在一张表中,该怎么做?
2.6 以降、集計の戻り値はカーソルになります。これはカーソルであるため、結果セット全体を操作する前にクライアントのメモリにキャッシュする必要はありません。単純な考え方は、カーソルを走査してターゲット コレクションに 1 つずつ挿入することです。たとえば、シェルでは次のようになります:
リーリー