Skip to content

Commit 984fc6d

Browse files
authored
DOCSP-19055 replace high volume page mentions of agg framework -> agg… (#472) (#570)
* DOCSP-19055 replace high volume page mentions of agg framework -> agg pipeline * Address Dave's comments #1
1 parent 62eb4ab commit 984fc6d

File tree

10 files changed

+22
-22
lines changed

10 files changed

+22
-22
lines changed

source/core/text-search-operators.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ operators, including restrictions and behavior, see:
4040
- :projection:`$meta` projection operator
4141

4242

43-
Aggregation Framework
44-
---------------------
43+
Aggregation Pipeline
44+
--------------------
4545

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

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

5656
.. [#meta-aggregation]

source/reference/command.txt

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

6565
* - :dbcommand:`aggregate`
6666

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

6969
* - :dbcommand:`count`
7070

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`.
@@ -292,7 +292,7 @@ Glossary
292292
writes at all times.
293293

294294
expression
295-
In the context of :term:`aggregation framework`, expressions are
295+
In the context of an :term:`aggregation pipeline`, expressions are
296296
the stateless transformations that operate on the data that passes
297297
through a :term:`pipeline`. See :doc:`/core/aggregation-pipeline`.
298298

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
@@ -82,7 +82,7 @@ Using ``$expr`` With Conditional Statements
8282
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8383

8484
Some queries require the ability to execute conditional logic when
85-
defining a query filter. The aggregation framework provides the
85+
defining a query filter. The aggregation pipeline provides the
8686
:expression:`$cond` operator to express conditional statements. By using
8787
:query:`$expr` with the :expression:`$cond` operator, you can
8888
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
@@ -666,8 +666,8 @@ For deployments that have enabled access control, you must have
666666
:authaction:`bypassDocumentValidation` action. The built-in roles
667667
:authrole:`dbAdmin` and :authrole:`restore` provide this action.
668668

669-
Aggregation Framework Enhancements
670-
----------------------------------
669+
Aggregation Pipeline Enhancements
670+
---------------------------------
671671

672672
MongoDB introduces:
673673

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)