File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
reference/operator/aggregation Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ results. Aggregation operations group values from multiple documents
15
15
together, and can perform a variety of operations on the grouped data
16
16
to return a single result. MongoDB provides three ways to perform
17
17
aggregation: the :ref:`aggregation pipeline
18
- <aggregation-framework >`, the :ref:`map-reduce function
18
+ <aggregation-pipeline >`, the :ref:`map-reduce function
19
19
<aggregation-map-reduce>`, and :ref:`single purpose aggregation methods
20
20
<single-purpose-agg-operations>`.
21
21
@@ -24,7 +24,7 @@ aggregation: the :ref:`aggregation pipeline
24
24
Aggregation Pipeline
25
25
--------------------
26
26
27
- MongoDB's :doc:`aggregation framework
27
+ MongoDB's :doc:`aggregation pipeline
28
28
</core/aggregation-pipeline>` is modeled on the concept of data
29
29
processing pipelines. Documents enter a multi-stage pipeline that
30
30
transforms the documents into an aggregated result. For example:
Original file line number Diff line number Diff line change @@ -21,7 +21,12 @@ Definition
21
21
22
22
Takes the documents returned by the aggregation pipeline and writes
23
23
them to a specified collection. The :pipeline:`$out` operator must
24
+ <<<<<<< HEAD
24
25
be *the last stage* in the pipeline.
26
+ =======
27
+ be *the last stage* in the pipeline. The :pipeline:`$out` operator
28
+ lets the aggregation pipeline return result sets of any size.
29
+ >>>>>>> b84304d59 (remove rouge agg framework)
25
30
26
31
.. versionchanged:: 3.2.0
27
32
You can’t perform that action at this time.
0 commit comments