- Reference >
- Database Commands >
- Aggregation Commands >
- mapReduce
mapReduce¶
On this page
-
mapReduce¶ The
mapReducecommand allows you to run map-reduce aggregation operations over a collection. ThemapReducecommand has the following prototype form:Pass the name of the collection to the
mapReducecommand (i.e.<collection>) to use as the source documents to perform the map-reduce operation.Note
Views do not support map-reduce operations.
The command also accepts the following parameters:
Field Type Description mapReducecollection The name of the collection on which you want to perform map-reduce. This collection will be filtered using querybefore being processed by themapfunction.mapfunction A JavaScript function that associates or “maps” a
valuewith akeyand emits thekeyand valuepair.See Requirements for the map Function for more information.
reducefunction A JavaScript function that “reduces” to a single object all the
valuesassociated with a particularkey.See Requirements for the reduce Function for more information.
outstring 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.
querydocument Optional. Specifies the selection criteria using query operators for determining the documents input to the mapfunction.sortdocument 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. limitnumber Optional. Specifies a maximum number of documents for the input into the mapfunction.finalizefunction Optional. Follows the
reducemethod and modifies the output.See Requirements for the finalize Function for more information.
scopedocument Optional. Specifies global variables that are accessible in the map,reduceandfinalizefunctions.jsModeboolean Optional. Specifies whether to convert intermediate data into BSON format between the execution of the
mapandreducefunctions.Defaults to
false.If
false:- Internally, MongoDB converts the JavaScript objects emitted
by the
mapfunction to BSON objects. These BSON objects are then converted back to JavaScript objects when calling thereducefunction. - The map-reduce operation places the intermediate BSON objects in temporary, on-disk storage. This allows the map-reduce operation to execute over arbitrarily large data sets.
If
true:- Internally, the JavaScript objects emitted during
mapfunction remain as JavaScript objects. There is no need to convert the objects for thereducefunction, which can result in faster execution. - You can only use
jsModefor result sets with fewer than 500,000 distinctkeyarguments to the mapper’semit()function.
verboseBoolean Optional. Specifies whether to include the
timinginformation in the result information. Setverbosetotrueto include thetiminginformation.Defaults to
false.bypassDocumentValidationboolean Optional. Enables
mapReduceto bypass document validation during the operation. This lets you insert documents that do not meet the validation requirements.New in version 3.2.
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.
The following is a prototype usage of the
mapReducecommand:JavaScript in MongoDB
Although
mapReduceuses JavaScript, most interactions with MongoDB do not use JavaScript but use an idiomatic driver in the language of the interacting application.- Internally, MongoDB converts the JavaScript objects emitted
by the
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
mapfunction, reference the current document asthiswithin the function. - The
mapfunction should not access the database for any reason. - The
mapfunction should be pure, or have no impact outside of the function (i.e. side effects.) - A single emit can only hold half of MongoDB’s maximum BSON document size.
- The
mapfunction may optionally callemit(key,value)any number of times to create an output document associatingkeywithvalue.
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
reducefunction should not access the database, even to perform read operations. - The
reducefunction should not affect the outside system. - MongoDB will not call the
reducefunction for a key that has only a single value. Thevaluesargument is an array whose elements are thevalueobjects that are “mapped” to thekey. - MongoDB can invoke the
reducefunction more than once for the same key. In this case, the previous output from thereducefunction for that key will become one of the input values to the nextreducefunction invocation for that key. - The
reducefunction can access the variables defined in thescopeparameter. - The inputs to
reducemust 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 subsequentreducesteps.
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
valueemitted by themapfunction.the
reducefunction must be associative. The following statement must be true:the
reducefunction must be idempotent. Ensure that the following statement is true:the
reducefunction should be commutative: that is, the order of the elements in thevaluesArrayshould not affect the output of thereducefunction, 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
finalizefunction should not access the database for any reason. - The
finalizefunction should be pure, or have no impact outside of the function (i.e. side effects.) - The
finalizefunction can access the variables defined in thescopeparameter.
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¶
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:replaceReplace the contents of the
<collectionName>if the collection with the<collectionName>exists.mergeMerge 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.
reduceMerge 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
reducefunction 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:Optional. If
trueand you have enabled sharding on output database, the map-reduce operation will shard the output collection using the_idfield as the shard key.nonAtomic:Optional. Specify output operation as non-atomic. This applies only to the
mergeandreduceoutput modes, which may take minutes to execute.By default
nonAtomicisfalse, and the map-reduce operation locks the database during post-processing.If
nonAtomicistrue, 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:
- find
Map-reduce with the replace action when outputting to a
collection:
- find,
- insert,
- replace
Map-reduce with the merge or reduce actions when
outputting to a collection:
- find,
- insert,
- update
The readWrite built-in role provides the necessary
permissions to perform map-reduce aggregation.
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:
Consider the following map-reduce operations on a collection
orders that contains documents of the following prototype:
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,
thisrefers to the document that the map-reduce operation is processing. - The function maps the
priceto thecust_idfor each document and emits thecust_idandpricepair.
- In the function,
Define the corresponding reduce function with two arguments
keyCustIdandvaluesPrices:- The
valuesPricesis an array whose elements are thepricevalues emitted by the map function and grouped bykeyCustId. - The function reduces the
valuesPricearray to the sum of its elements.
- The
Perform the map-reduce on all documents in the
orderscollection using themapFunction1map function and thereduceFunction1reduce function.This operation outputs the results to a collection named
map_reduce_example. If themap_reduce_examplecollection already exists, the operation will replace the contents with the results of this map-reduce operation:
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 01/01/2012. The operation groups by the
item.sku field, and calculates the number of
orders and the total quantity ordered for each sku. The operation concludes by
calculating the average quantity per order for each sku value:
Define the map function to process each input document:
- In the function,
thisrefers to the document that the map-reduce operation is processing. - For each item, the function associates the
skuwith a new objectvaluethat contains thecountof1and the itemqtyfor the order and emits theskuandvaluepair.
- In the function,
Define the corresponding reduce function with two arguments
keySKUandcountObjVals:countObjValsis an array whose elements are the objects mapped to the groupedkeySKUvalues passed by map function to the reducer function.- The function reduces the
countObjValsarray to a single objectreducedValuethat contains thecountand theqtyfields. - In
reducedVal, thecountfield contains the sum of thecountfields from the individual array elements, and theqtyfield contains the sum of theqtyfields from the individual array elements.
Define a finalize function with two arguments
keyandreducedVal. The function modifies thereducedValobject to add a computed field namedavgand returns the modified object:Perform the map-reduce operation on the
orderscollection using themapFunction2,reduceFunction2, andfinalizeFunction2functions.This operation uses the
queryfield to select only those documents withord_dategreater thannew Date(01/01/2012). Then it output the results to a collectionmap_reduce_example. If themap_reduce_examplecollection already exists, the operation will merge the existing contents with the results of this map-reduce operation.
For more information and examples, see the Map-Reduce page and Perform Incremental Map-Reduce.
Output¶
The mapReduce command adds support for the
bypassDocumentValidation option, which lets you bypass
document validation when
inserting or updating documents in a collection with validation
rules.
If you set the out parameter to write the
results to a collection, the mapReduce command returns a
document in the following form:
If you set the out parameter to output the
results inline, the mapReduce command returns a document
in the following form:
-
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:
_idfield contains thekeyvalue,valuefield contains the reduced or finalized value for the associatedkey.
-
mapReduce.timeMillis¶ The command execution time in milliseconds.
-
mapReduce.counts.input¶ The number of input documents, which is the number of times the
mapReducecommand called themapfunction.
-
mapReduce.counts.output¶ The number of output values produced.