Skip to content

Commit 2ceaaef

Browse files
authored
DOCSP-19055 replace high volume page mentions of agg framework -> agg… (#472) (#564)
* DOCSP-19055 replace high volume page mentions of agg framework -> agg pipeline * Address Dave's comments #1
1 parent 4ba7513 commit 2ceaaef

File tree

11 files changed

+24
-24
lines changed

11 files changed

+24
-24
lines changed

source/core/text-search-operators.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@ operators, including restrictions and behavior, see:
4141

4242
- :expression:`$meta` projection operator
4343

44-
Aggregation Framework
45-
---------------------
44+
Aggregation Pipeline
45+
--------------------
4646

47-
When working with the :doc:`/aggregation` framework, use
47+
When working with :doc:`/aggregation` pipelines, use
4848
:pipeline:`$match` with a :query:`$text` expression to execute a text
4949
search query. To sort the results in order of relevance score, use the
5050
:expression:`$meta` *aggregation operator* in the :pipeline:`$sort`
5151
stage [#meta-aggregation]_.
5252

53-
For more information and examples of text search in the
54-
:doc:`/aggregation` framework, see
53+
For more information and examples of text search in
54+
:doc:`/aggregation` pipelines, see
5555
:doc:`/tutorial/text-search-in-aggregation`.
5656

5757
.. include:: /includes/fact-atlas-search-search-stage.rst

source/core/timeseries-collections.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ following command:
218218
Run Aggregations on a Time Series Collection
219219
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
220220

221-
For additional query functionality, use the :ref:`aggregation framework
222-
<aggregation-framework>`:
221+
For additional query functionality, use an :ref:`aggregation pipeline
222+
<aggregation-framework>` such as:
223223

224224
.. code-block:: javascript
225225

source/reference/command.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Aggregation Commands
6262

6363
* - :dbcommand:`aggregate`
6464

65-
- Performs :doc:`aggregation tasks </core/aggregation-pipeline>` such as group using the aggregation framework.
65+
- Performs :doc:`aggregation tasks </core/aggregation-pipeline>` such as :pipeline:`$group` using an aggregation pipeline.
6666

6767
* - :dbcommand:`count`
6868

source/reference/command/nav-aggregation.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Aggregation Commands
2222

2323
* - :dbcommand:`aggregate`
2424

25-
- Performs :doc:`aggregation tasks </core/aggregation-pipeline>` such as group using the aggregation framework.
25+
- Performs :doc:`aggregation tasks </core/aggregation-pipeline>` such as :pipeline:`$group` using an aggregation pipeline.
2626

2727
* - :dbcommand:`count`
2828

source/reference/glossary.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Glossary
3030
BSON :term:`ObjectId`.
3131

3232
accumulator
33-
An :term:`expression` in the :term:`aggregation framework` that
33+
An :term:`expression` in an :term:`aggregation pipeline` that
3434
maintains state between documents in the aggregation
3535
:term:`pipeline`. For a list of accumulator operations, see
3636
:pipeline:`$group`.
@@ -53,7 +53,7 @@ Glossary
5353
examples of aggregation operations. For more information, see
5454
:doc:`/aggregation`.
5555

56-
aggregation framework
56+
aggregation pipeline
5757
The set of MongoDB operators that let you calculate aggregate
5858
values without having to use :term:`map-reduce`. For a list of
5959
operators, see :doc:`/reference/aggregation`.
@@ -319,7 +319,7 @@ Glossary
319319
writes at all times.
320320

321321
expression
322-
In the context of :term:`aggregation framework`, expressions are
322+
In the context of an :term:`aggregation pipeline`, expressions are
323323
the stateless transformations that operate on the data that passes
324324
through a :term:`pipeline`. See :doc:`/core/aggregation-pipeline`.
325325

source/reference/operator/aggregation/interface.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Aggregation Commands
2525

2626
* - :dbcommand:`aggregate`
2727

28-
- Performs :doc:`aggregation tasks </core/aggregation-pipeline>` such as group using the aggregation framework.
28+
- Performs :doc:`aggregation tasks </core/aggregation-pipeline>` such as :pipeline:`$group` using an aggregation pipeline.
2929

3030
* - :dbcommand:`count`
3131

source/reference/operator/query/expr.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Using ``$expr`` With Conditional Statements
7878
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7979

8080
Some queries require the ability to execute conditional logic when
81-
defining a query filter. The aggregation framework provides the
81+
defining a query filter. The aggregation pipeline provides the
8282
:expression:`$cond` operator to express conditional statements. By using
8383
:query:`$expr` with the :expression:`$cond` operator, you can
8484
specify a conditional filter for your query statement.

source/release-notes/1.8.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ MongoDB now supports write-ahead :doc:`/core/journaling` to
234234
facilitate fast crash recovery and durability in the storage engine.
235235
With journaling enabled, a :binary:`~bin.mongod` can be quickly restarted
236236
following a crash without needing to repair the :term:`collections
237-
<collection>`. The aggregation framework makes it possible to do
238-
aggregation
237+
<collection>`. An aggregation pipeline makes it possible to do
238+
aggregation.
239239

240240
Sparse and Covered Indexes
241241
~~~~~~~~~~~~~~~~~~~~~~~~~~

source/release-notes/2.2.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,15 +141,15 @@ Changes
141141
Major Features
142142
~~~~~~~~~~~~~~
143143

144-
Aggregation Framework
145-
`````````````````````
144+
Aggregation Pipeline
145+
````````````````````
146146

147-
The aggregation framework makes it possible to do aggregation
147+
An aggregation pipeline makes it possible to do aggregation
148148
operations without needing to use :term:`map-reduce`. The
149-
:dbcommand:`aggregate` command exposes the aggregation framework, and the
149+
:dbcommand:`aggregate` command creates an aggregation pipeline, and the
150150
:method:`~db.collection.aggregate()` helper in the :binary:`~bin.mongo` shell
151151
provides an interface to these operations. Consider the following
152-
resources for background on the aggregation framework and its use:
152+
resources for background on aggregation pipelines and their use:
153153

154154
- Documentation: :doc:`/aggregation`
155155

source/release-notes/3.2.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -654,8 +654,8 @@ For deployments that have enabled access control, you must have
654654
:authaction:`bypassDocumentValidation` action. The built-in roles
655655
:authrole:`dbAdmin` and :authrole:`restore` provide this action.
656656

657-
Aggregation Framework Enhancements
658-
----------------------------------
657+
Aggregation Pipeline Enhancements
658+
---------------------------------
659659

660660
MongoDB introduces:
661661

source/tutorial/model-monetary-data.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Numeric Model
3333
The numeric model may be appropriate if you need to query the
3434
database for exact, mathematically valid matches or need to perform
3535
server-side arithmetic, e.g., :update:`$inc`, :update:`$mul`, and
36-
:ref:`aggregation framework arithmetic <agg-quick-ref-operator-arithmetic>`.
36+
:ref:`aggregation pipeline arithmetic <agg-quick-ref-operator-arithmetic>`.
3737

3838
**The following approaches follow the numeric model:**
3939

0 commit comments

Comments
 (0)