Skip to content

DOCSP-50747: agg tutorial link #138

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions snooty.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ string-data-type = "``string``"
int-data-type = "``int``"
stable-api = "Stable API"
mdb-server = "MongoDB Server"
language = "C++"
13 changes: 11 additions & 2 deletions source/aggregation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,23 @@ part of the Query API, is modeled on the concept of data processing
pipelines. Documents enter a pipeline that contains one or more stages,
and this pipeline transforms the documents into an aggregated result.

.. sharedinclude:: dbx/agg-tutorials-manual-tip.rst

.. replacement:: language

:guilabel:`{+language+}11`

Analogy
~~~~~~~

An aggregation operation is similar to a car factory. A car factory has
an assembly line, which contains assembly stations with specialized
tools to do specific jobs, like drills and welders. Raw parts enter the
factory, and then the assembly line transforms and assembles them into a
finished product.

The **aggregation pipeline** is the assembly line, **aggregation stages** are the
assembly stations, and **operator expressions** are the
The **aggregation pipeline** is the assembly line, **aggregation
stages** are the assembly stations, and **operator expressions** are the
specialized tools.

Aggregation Versus Find Operations
Expand Down
Loading