Skip to content

Commit df17581

Browse files
authored
* DOCSP-19108 update aggregation-framework -> aggregation-pipeline-intro (#686) * DOCSP-19108 update aggregation-framework -> aggregation-pipeline-intro * CR1 * CR 1.5 * removing timeseries-collections.txt * rearranging sharding additional info * fix bullets on sharding additional info * fixing the fix * add blank line * move pipeline-intro ref * remove rouge agg framework
1 parent b91f3e1 commit df17581

File tree

5 files changed

+25
-6
lines changed

5 files changed

+25
-6
lines changed

source/aggregation.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ results. Aggregation operations group values from multiple documents
1515
together, and can perform a variety of operations on the grouped data
1616
to return a single result. MongoDB provides three ways to perform
1717
aggregation: the :ref:`aggregation pipeline
18-
<aggregation-framework>`, the :ref:`map-reduce function
18+
<aggregation-pipeline>`, the :ref:`map-reduce function
1919
<aggregation-map-reduce>`, and :ref:`single purpose aggregation methods
2020
<single-purpose-agg-operations>`.
2121

22-
.. _aggregation-framework:
22+
.. _aggregation-pipeline-intro:
2323

2424
Aggregation Pipeline
2525
--------------------
2626

27-
MongoDB's :doc:`aggregation framework
27+
MongoDB's :doc:`aggregation pipeline
2828
</core/aggregation-pipeline>` is modeled on the concept of data
2929
processing pipelines. Documents enter a multi-stage pipeline that
3030
transforms the documents into an aggregated result. For example:

source/core/sharded-cluster-query-router.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,3 +309,12 @@ Connection Pools
309309
.. |newversion| replace:: 4.2
310310

311311
.. |oldversion| replace:: 4.0
312+
313+
Using Aggregation Pipelines with Clusters
314+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
315+
316+
For more information on how sharding works with :ref:`aggregations
317+
<aggregation-pipeline>`, read the sharding chapter in the `Practical
318+
MongoDB Aggregations
319+
<https://www.practical-mongodb-aggregations.com/guides/sharding.html>`__
320+
e-book.

source/reference/operator/aggregation/out.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Definition
2020
Takes the documents returned by the aggregation pipeline and writes
2121
them to a specified collection. The :pipeline:`$out` operator must
2222
be *the last stage* in the pipeline. The :pipeline:`$out` operator
23-
lets the aggregation framework return result sets of any size.
23+
lets the aggregation pipeline return result sets of any size.
2424

2525
.. versionchanged:: 3.2.0
2626

source/reference/operator/query/where.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,11 @@ Definition
3838
(:doc:`BSON type 13 </reference/bson-types/>`).
3939

4040
.. important::
41+
4142
.. versionchanged:: 3.6
43+
4244
The :query:`$expr` operator allows the
43-
use of :ref:`aggregation expressions <aggregation-framework>`
45+
use of :ref:`aggregation expressions <aggregation-expressions>`
4446
within the query language. :query:`$expr` is faster than
4547
:query:`$where` because it does not execute JavaScript and should
4648
be preferred where possible.

source/sharding.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,16 @@ available on sharded clusters.
364364

365365
.. include:: /includes/extracts/transactions-committed-visibility.rst
366366

367+
Additional Information
368+
~~~~~~~~~~~~~~~~~~~~~~
367369

368-
For details, see:
370+
For more information on how sharding works with
371+
:doc:`aggregations </aggregation>`, read the sharding
372+
chapter in the `Practical MongoDB Aggregations
373+
<https://www.practical-mongodb-aggregations.com/guides/sharding.html>`__
374+
e-book.
375+
376+
See also:
369377

370378
- :doc:`/core/transactions`
371379
- :doc:`/core/transactions-production-consideration`

0 commit comments

Comments
 (0)