- Reference >
- Database Commands >
- Aggregation Commands >
- aggregate
aggregate¶
On this page
-
aggregate¶ Performs aggregation operation using the aggregation pipeline. The pipeline allows users to process data from a collection with a sequence of stage-based manipulations.
The command has following syntax:
Changed in version 3.4.
The
aggregatecommand takes the following fields as arguments:Field Type Description aggregatestring The name of the collection to as the input for the aggregation pipeline. pipelinearray An array of aggregation pipeline stages that process and transform the document stream as part of the aggregation pipeline. explainboolean Optional. Specifies to return the information on the processing of the pipeline.
New in version 2.6.
allowDiskUseboolean Optional. Enables writing to temporary files. When set to
true, aggregation stages can write data to the_tmpsubdirectory in thedbPathdirectory.New in version 2.6.
cursordocument Specify a document that contains options that control the creation of the cursor object.
Changed in version 3.4: MongoDB 3.4 deprecates the use of
aggregatecommand without thecursoroption, unless the pipeline includes theexplainoption. When returning aggregation results inline using theaggregatecommand, specify the cursor option using the default batch sizecursor: {}or specify the batch size in the cursor optioncursor: { batchSize: <num> }.New in version 2.6.
maxTimeMSnon-negative integer Optional. Specifies a time limit in milliseconds for processing operations on a cursor. If you do not specify a value for maxTimeMS, operations will not time out. A value of
0explicitly specifies the default unbounded behavior.MongoDB terminates operations that exceed their allotted time limit using the same mechanism as
db.killOp(). MongoDB only terminates an operation at one of its designated interrupt points.bypassDocumentValidationboolean Optional. Available only if you specify the
$outaggregation operator.Enables
aggregateto bypass document validation during the operation. This lets you insert documents that do not meet the validation requirements.New in version 3.2.
readConcerndocument Optional. Specifies the read concern. The option has the following syntax:
Possible read concern values are:
"local". This is the default read concern level."majority". Available for replica sets that use WiredTiger storage engine."linearizable". Available for read operations on theprimaryonly.
For more formation on the read concern levels, see Read Concern Levels.
collationdocument Optional.
Specifies the collation to use for the operation.
Collation allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.
The collation option has the following syntax:
When specifying collation, the
localefield is mandatory; all other collation fields are optional. For descriptions of the fields, see Collation Document.If the collation is unspecified but the collection has a default collation (see
db.createCollection()), the operation uses the collation specified for the collection.If no collation is specified for the collection or for the operations, MongoDB uses the simple binary comparison used in prior versions for string comparisons.
You cannot specify multiple collations for an operation. For example, you cannot specify different collations per field, or if performing a find with a sort, you cannot use one collation for the find and another for the sort.
New in version 3.4.
Changed in version 3.4: MongoDB 3.4 deprecates the use of aggregate command
without the cursor option, unless the pipeline includes the
explain option. When returning aggregation results inline using the
aggregate command, specify the cursor option using the
default batch size cursor: {} or specify the batch size in the
cursor option cursor: { batchSize: <num> }.
Changed in version 2.6: aggregation pipeline
introduces the $out operator to allow
aggregate command to store results to a collection.
For more information about the aggregation pipeline Aggregation Pipeline, Aggregation Reference, and Aggregation Pipeline Limits.
Example¶
Changed in version 3.4: MongoDB 3.4 deprecates the use of aggregate command
without the cursor option, unless the pipeline includes the
explain option. When returning aggregation results inline using the
aggregate command, specify the cursor option using the
default batch size cursor: {} or specify the batch size in the
cursor option cursor: { batchSize: <num> }.
Rather than run the aggregate command directly, most
users should use the db.collection.aggregate() helper
provided in the mongo shell or the equivalent helper in
their driver. In 2.6 and later, the
db.collection.aggregate() helper always returns a cursor.
Except for the first example which demonstrates the command syntax,
the examples in this page use the
db.collection.aggregate() helper.
Aggregate Data with Multi-Stage Pipeline¶
A collection articles contains documents such as the following:
The following example performs an aggregate operation on
the articles collection to calculate the count of each distinct
element in the tags array that appears in the collection.
In the mongo shell, this operation can use the
db.collection.aggregate() helper as in the following:
Return Information on the Aggregation Operation¶
The following aggregation operation sets the optional field explain
to true to return information about the aggregation operation.
Note
The explain output is subject to change between releases.
See also
db.collection.aggregate() method
Aggregate Data using External Sort¶
Aggregation pipeline stages have maximum memory use limit. To handle large datasets, set
allowDiskUse option to true to enable writing data to
temporary files, as in the following example:
See also
Aggregate Data Specifying Batch Size¶
To specify an initial batch size, specify the batchSize in the
cursor field, as in the following example:
The {batchSize: 0 } document specifies the size of the initial
batch size only. Specify subsequent batch sizes to OP_GET_MORE operations as with other MongoDB cursors. A
batchSize of 0 means an empty first batch and is useful if you
want to quickly get back a cursor or failure message, without doing
significant server-side work.
Specify a Collation¶
New in version 3.4.
Collation allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.
A collection myColl has the following documents:
The following aggregation operation includes the Collation option:
For descriptions on the collation fields, see Collation Document.
Override Default Read Concern¶
To override the default read concern level of "local",
use the readConcern option. The getMore command uses
the readConcern level specified in the originating
aggregate command.s
The following operation on a replica set specifies a read concern of "majority" to read the
most recent copy of the data confirmed as having been written to a
majority of the nodes.
Important
- To use read concern level of
"majority",- you must start the
mongodinstances with the--enableMajorityReadConcerncommand line option (or thereplication.enableMajorityReadConcernset totrueif using a configuration file). - replica sets must use WiredTiger storage engine and election
protocol version 1.
- you must start the
- To use a read concern level of
"majority", you cannot include the$outstage. - Regardless of the read concern level, the most recent data on a node may not reflect the most recent version of the data in the system.
To ensure that a single thread can read its own writes, use
"majority" read concern and "majority"
write concern against the primary of the replica set.
See also