- Reference >
- Database Commands >
- Aggregation Commands >
- mapReduce
mapReduce¶
On this page
Definition¶
-
mapReduce
¶ The
mapReduce
command allows you to run map-reduce aggregation operations over a collection.Aggregation Pipeline as Alternative
Aggregation pipeline provides better performance and a more coherent interface than map-reduce, and map-reduce expressions can be rewritten using aggregation pipeline operators, such as
$group
,$merge
, etc.For map-reduce expressions that require custom functionality, MongoDB provides the
$accumulator
and$function
aggregation operators starting in version 4.4. These operators provide users with the ability to define custom aggregation expressions in JavaScript.For examples of aggregation alternatives to map-reduce operations, see Map-Reduce Examples. See also Map-Reduce to Aggregation Pipeline.
Syntax¶
Note
Starting in version 4.4, MongoDB ignores the verbose option.
Starting in version 4.2, MongoDB deprecates:
- The map-reduce option to create a new sharded collection as well as the use of the sharded option for map-reduce. To output to a sharded collection, create the sharded collection first. MongoDB 4.2 also deprecates the replacement of an existing sharded collection.
- The explicit specification of nonAtomic: false option.
The mapReduce
command has the following syntax:
Command Fields¶
The command takes the following fields as arguments:
Field | Type | Description |
---|---|---|
mapReduce | string | The name of the collection on which you want to perform map-reduce.
This collection will be filtered using Note Views do not support map-reduce operations. |
map | JavaScript or String | A JavaScript function that associates or “maps” a See Requirements for the map Function for more information. |
reduce | JavaScript or String | A JavaScript function that “reduces” to a single object all
the See Requirements for the reduce Function for more information. |
out | string or document | Specifies where to output the result of the map-reduce operation. You can either output to a collection or return the result inline. On a primary member of a replica set you can output either to a collection or inline, but on a secondary, only inline output is possible. See out Options for more information. |
query | document | Optional. Specifies the selection criteria using query operators for determining the documents input to the
|
sort | document | Optional. Sorts the input documents. This option is useful for optimization. For example, specify the sort key to be the same as the emit key so that there are fewer reduce operations. The sort key must be in an existing index for this collection. |
limit | number | Optional. Specifies a maximum number of documents for the input into the
|
finalize | JavaScript or String | Optional. A JavaScript function that modifies the output after
the See Requirements for the finalize Function for more information. |
scope | document | Optional. Specifies global variables that are accessible in the |
jsMode | boolean | Optional. Specifies whether to convert intermediate data into BSON
format between the execution of the Defaults to If
If
|
verbose | boolean | Optional. Specifies whether to include the Defaults to Starting in MongoDB 4.4, this option is ignored. The result
information always excludes the |
bypassDocumentValidation | boolean | Optional. Enables New in version 3.2. Note If the output option is set to
|
collation | document | 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 If the collation is unspecified but the collection has a
default collation (see 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. |
writeConcern | document | Optional. A document that expresses the write concern to use when outputing to a collection. Omit to use the default write concern. |
comment |
any | Optional. A user-provided comment to attach to this command. Once set, this comment appears alongside records of this command in the following locations:
A comment can be any valid BSON type (string, integer, object, array, etc). New in version 4.4. |
Usage¶
The following is a prototype usage of the mapReduce
command:
JavaScript in MongoDB
Although mapReduce
uses JavaScript, most
interactions with MongoDB do not use JavaScript but use an
idiomatic driver in the language
of the interacting application.
Requirements for the map
Function¶
The map
function is responsible for transforming each input document into
zero or more documents. It can access the variables defined in the scope
parameter, and has the following prototype:
The map
function has the following requirements:
In the
map
function, reference the current document asthis
within the function.The
map
function should not access the database for any reason.The
map
function should be pure, or have no impact outside of the function (i.e. side effects.)The
map
function may optionally callemit(key,value)
any number of times to create an output document associatingkey
withvalue
.In MongoDB 4.2 and earlier, a single emit can only hold half of MongoDB’s maximum BSON document size. MongoDB removes this restriction starting in version 4.4.
Starting in MongoDB 4.4,
mapReduce
no longer supports the deprecated BSON type JavaScript code with scope (BSON type 15) for its functions. Themap
function must be either BSON type String (BSON type 2) or BSON type JavaScript (BSON type 13). To pass constant values which will be accessible in themap
function, use thescope
parameter.The use of JavaScript code with scope for themap
function has been deprecated since version 4.2.1.
The following map
function will call emit(key,value)
either
0 or 1 times depending on the value of the input document’s
status
field:
The following map
function may call emit(key,value)
multiple times depending on the number of elements in the input
document’s items
field:
Requirements for the reduce
Function¶
The reduce
function has the following prototype:
The reduce
function exhibits the following behaviors:
The
reduce
function should not access the database, even to perform read operations.The
reduce
function should not affect the outside system.MongoDB will not call the
reduce
function for a key that has only a single value. Thevalues
argument is an array whose elements are thevalue
objects that are “mapped” to thekey
.MongoDB can invoke the
reduce
function more than once for the same key. In this case, the previous output from thereduce
function for that key will become one of the input values to the nextreduce
function invocation for that key.The
reduce
function can access the variables defined in thescope
parameter.The inputs to
reduce
must not be larger than half of MongoDB’s maximum BSON document size. This requirement may be violated when large documents are returned and then joined together in subsequentreduce
steps.Starting in MongoDB 4.4,
mapReduce
no longer supports the deprecated BSON type JavaScript code with scope (BSON type 15) for its functions. Thereduce
function must be either BSON type String (BSON type 2) or BSON type JavaScript (BSON type 13). To pass constant values which will be accessible in thereduce
function, use thescope
parameter.The use of JavaScript code with scope for thereduce
function has been deprecated since version 4.2.1.
Because it is possible to invoke the reduce
function
more than once for the same key, the following
properties need to be true:
the type of the return object must be identical to the type of the
value
emitted by themap
function.the
reduce
function must be associative. The following statement must be true:the
reduce
function must be idempotent. Ensure that the following statement is true:the
reduce
function should be commutative: that is, the order of the elements in thevaluesArray
should not affect the output of thereduce
function, so that the following statement is true:
Requirements for the finalize
Function¶
The finalize
function has the following prototype:
The finalize
function receives as its arguments a key
value and the reducedValue
from the reduce
function. Be
aware that:
The
finalize
function should not access the database for any reason.The
finalize
function should be pure, or have no impact outside of the function (i.e. side effects.)The
finalize
function can access the variables defined in thescope
parameter.Starting in MongoDB 4.4,
mapReduce
no longer supports the deprecated BSON type JavaScript code with scope (BSON type 15) for its functions. Thefinalize
function must be either BSON type String (BSON type 2) or BSON type JavaScript (BSON type 13). To pass constant values which will be accessible in thefinalize
function, use thescope
parameter.The use of JavaScript code with scope for thefinalize
function has been deprecated since version 4.2.1.
out
Options¶
You can specify the following options for the out
parameter:
Output to a Collection¶
This option outputs to a new collection, and is not available on secondary members of replica sets.
Output to a Collection with an Action¶
Note
Starting in version 4.2, MongoDB deprecates:
- The map-reduce option to create a new sharded collection as well as the use of the sharded option for map-reduce. To output to a sharded collection, create the sharded collection first. MongoDB 4.2 also deprecates the replacement of an existing sharded collection.
- The explicit specification of nonAtomic: false option.
This option is only available when passing a collection that
already exists to out
. It is not available
on secondary members of replica sets.
When you output to a collection with an action, the out
has the
following parameters:
<action>
: Specify one of the following actions:replace
Replace the contents of the
<collectionName>
if the collection with the<collectionName>
exists.merge
Merge the new result with the existing result if the output collection already exists. If an existing document has the same key as the new result, overwrite that existing document.
reduce
Merge the new result with the existing result if the output collection already exists. If an existing document has the same key as the new result, apply the
reduce
function to both the new and the existing documents and overwrite the existing document with the result.
db
:Optional. The name of the database that you want the map-reduce operation to write its output. By default this will be the same database as the input collection.
sharded
:Note
Starting in version 4.2, the use of the
sharded
option is deprecated.Optional. If
true
and you have enabled sharding on output database, the map-reduce operation will shard the output collection using the_id
field as the shard key.If
true
andcollectionName
is an existing unsharded collection, map-reduce fails.nonAtomic
:Note
Starting in MongoDB 4.2, explicitly setting
nonAtomic
tofalse
is deprecated.Optional. Specify output operation as non-atomic. This applies only to the
merge
andreduce
output modes, which may take minutes to execute.By default
nonAtomic
isfalse
, and the map-reduce operation locks the database during post-processing.If
nonAtomic
istrue
, the post-processing step prevents MongoDB from locking the database: during this time, other clients will be able to read intermediate states of the output collection.
Output Inline¶
Perform the map-reduce operation in memory and return the result. This
option is the only available option for out
on secondary members of
replica sets.
The result must fit within the maximum size of a BSON document.
Required Access¶
If your MongoDB deployment enforces authentication, the user executing
the mapReduce
command must possess the following
privilege actions:
Map-reduce with {out : inline}
output option:
Map-reduce with the replace
action when outputting to a
collection:
Map-reduce with the merge
or reduce
actions when
outputting to a collection:
The readWrite
built-in role provides the necessary
permissions to perform map-reduce aggregation.
Restrictions¶
MongoDB drivers automatically set afterClusterTime for operations associated with causally
consistent sessions. Starting in MongoDB 4.2, the
mapReduce
command no longer support afterClusterTime. As such, mapReduce
cannot be
associatd with causally consistent sessions.
Map-Reduce Examples¶
In the mongo
shell, the db.collection.mapReduce()
method is a wrapper around the mapReduce
command. The
following examples use the db.collection.mapReduce()
method:
Aggregation Pipeline as Alternative
Aggregation pipeline
provides better performance and a more coherent interface than
map-reduce, and various map-reduce expressions can be
rewritten using aggregation pipeline operators, such as $group
,
$merge
, etc.
For map-reduce expressions that require custom functionality,
MongoDB provides the $accumulator
and
$function
aggregation operators starting in version
4.4. These operators provide users with the ability to define custom
aggregation expressions in JavaScript.
The example below includes aggregation pipeline alternatives without custom aggregation expressions. For alternatives that use custom expressions, see Map-Reduce to Aggregation Pipeline Translation Examples.
Create a sample collection orders
with the following documents:
Return the Total Price Per Customer¶
Perform the map-reduce operation on the orders
collection to group
by the cust_id
, and calculate the sum of the price
for each
cust_id
:
Define the map function to process each input document:
- In the function,
this
refers to the document that the map-reduce operation is processing. - The function maps the
price
to thecust_id
for each document and emits thecust_id
andprice
pair.
- In the function,
Define the corresponding reduce function with two arguments
keyCustId
andvaluesPrices
:- The
valuesPrices
is an array whose elements are theprice
values emitted by the map function and grouped bykeyCustId
. - The function reduces the
valuesPrice
array to the sum of its elements.
- The
Perform map-reduce on all documents in the
orders
collection using themapFunction1
map function and thereduceFunction1
reduce function.This operation outputs the results to a collection named
map_reduce_example
. If themap_reduce_example
collection already exists, the operation will replace the contents with the results of this map-reduce operation.Query the
map_reduce_example
collection to verify the results:The operation returns the following documents:
Aggregation Alternative¶
Using the available aggregation pipeline operators, you can rewrite the map-reduce operation without defining custom functions:
The
$group
stage groups by thecust_id
and calculates thevalue
field (See also$sum
). Thevalue
field contains the totalprice
for eachcust_id
.The stage output the following documents to the next stage:
Then, the
$out
writes the output to the collectionagg_alternative_1
. Alternatively, you could use$merge
instead of$out
.Query the
agg_alternative_1
collection to verify the results:The operation returns the following documents:
See also
For an alternative that uses custom aggregation expressions, see Map-Reduce to Aggregation Pipeline Translation Examples.
Calculate Order and Total Quantity with Average Quantity Per Item¶
In this example, you will perform a map-reduce operation on the
orders
collection for all documents that have an ord_date
value
greater than or equal to 2020-03-01
. The operation groups by the
item.sku
field, and calculates the number of orders and the total
quantity ordered for each sku
. The operation then calculates the
average quantity per order for each sku
value and merges the
results into the output collection. When merging results, if an
existing document has the same key as the new result, the operation
overwrites the existing document. If there is no existing document with
the same key, the operation inserts the document.
Define the map function to process each input document:
- In the function,
this
refers to the document that the map-reduce operation is processing. - For each item, the function associates the
sku
with a new objectvalue
that contains thecount
of1
and the itemqty
for the order and emits thesku
andvalue
pair.
- In the function,
Define the corresponding reduce function with two arguments
keySKU
andcountObjVals
:countObjVals
is an array whose elements are the objects mapped to the groupedkeySKU
values passed by map function to the reducer function.- The function reduces the
countObjVals
array to a single objectreducedValue
that contains thecount
and theqty
fields. - In
reducedVal
, thecount
field contains the sum of thecount
fields from the individual array elements, and theqty
field contains the sum of theqty
fields from the individual array elements.
Define a finalize function with two arguments
key
andreducedVal
. The function modifies thereducedVal
object to add a computed field namedavg
and returns the modified object:Perform the map-reduce operation on the
orders
collection using themapFunction2
,reduceFunction2
, andfinalizeFunction2
functions.This operation uses the
query
field to select only those documents withord_date
greater than or equal tonew Date("2020-03-01")
. Then it output the results to a collectionmap_reduce_example2
.If the
map_reduce_example2
collection already exists, the operation will merge the existing contents with the results of this map-reduce operation. That is, if an existing document has the same key as the new result, the operation overwrites the existing document. If there is no existing document with the same key, the operation inserts the document.Query the
map_reduce_example2
collection to verify the results:The operation returns the following documents:
Aggregation Alternative¶
Using the available aggregation pipeline operators, you can rewrite the map-reduce operation without defining custom functions:
The
$match
stage selects only those documents withord_date
greater than or equal tonew Date("2020-03-01")
.The
$unwinds
stage breaks down the document by theitems
array field to output a document for each array element. For example:The
$group
stage groups by theitems.sku
, calculating for each sku:- The
qty
field. Theqty
field contains the totalqty
ordered per eachitems.sku
(See$sum
). - The
orders_ids
array. Theorders_ids
field contains an array of distinct order_id
’s for theitems.sku
(See$addToSet
).
- The
The
$project
stage reshapes the output document to mirror the map-reduce’s output to have two fields_id
andvalue
. The$project
sets:Finally, the
$merge
writes the output to the collectionagg_alternative_3
. If an existing document has the same key_id
as the new result, the operation overwrites the existing document. If there is no existing document with the same key, the operation inserts the document.Query the
agg_alternative_3
collection to verify the results:The operation returns the following documents:
See also
For an alternative that uses custom aggregation expressions, see Map-Reduce to Aggregation Pipeline Translation Examples.
For more information and examples, see the Map-Reduce page and Perform Incremental Map-Reduce.
Output¶
If you set the out parameter to write the
results to a collection, the mapReduce
command returns a
document in the following form:
- MongoDB 4.4+
- MongoDB 4.2 and earlier
If you set the out parameter to output the
results inline, the mapReduce
command returns a document
in the following form:
- MongoDB 4.4+
- MongoDB 4.2 and earlier
-
mapReduce.
result
¶ For output sent to a collection, this value is either:
-
mapReduce.
results
¶ For output written inline, an array of resulting documents. Each resulting document contains two fields:
_id
field contains thekey
value,value
field contains the reduced or finalized value for the associatedkey
.
-
mapReduce.
timeMillis
¶ Available for MongoDB 4.2 and earlier only
The command execution time in milliseconds.
-
mapReduce.
counts
¶ Available for MongoDB 4.2 and earlier only
Various count statistics from the
mapReduce
command.
-
mapReduce.counts.
input
¶ Available for MongoDB 4.2 and earlier only
The number of input documents, which is the number of times the
mapReduce
command called themap
function.
-
mapReduce.counts.
emit
¶ Available for MongoDB 4.2 and earlier only
The number of times the
mapReduce
command called theemit
function.
-
mapReduce.counts.
reduce
¶ Available for MongoDB 4.2 and earlier only
The number of times the
mapReduce
command called thereduce
function.
-
mapReduce.counts.
output
¶ Available for MongoDB 4.2 and earlier only
The number of output values produced.
-
mapReduce.
ok
¶ A value of
1
indicates themapReduce
command ran successfully. A value of0
indicates an error.
In addition to the aforementioned command specific return fields, the
db.runCommand()
includes additional information:
- for replica sets:
$clusterTime
, andoperationTime
. - for sharded clusters:
operationTime
and$clusterTime
.
See db.runCommand Response for details on these fields.