- Reference >
- JavaScript Methods >
- db.collection.mapReduce()
db.collection.mapReduce()¶
On this page
-
db.collection.mapReduce(map, reduce, {<out>, <query>, <sort>, <limit>, <finalize>, <scope>, <jsMode>, <verbose>})¶ The
db.collection.mapReduce()method provides a wrapper around themapReducecommand.db.collection.mapReduce()takes the following parameters:Parameters: - map –
A JavaScript function that associates or “maps” a
valuewith akeyand emits thekeyand valuepair.The
mapfunction processes every input document for the map-reduce operation. However, themapfunction can call emit any number of times, including 0, for each input document. The map-reduce operation groups the emittedvalueobjects by thekeyand passes these groupings to thereducefunction. See below for requirements for themapfunction. - reduce –
A JavaScript function that “reduces” to a single object all the
valuesassociated with a particularkey.The
reducefunction accepts two arguments:keyandvalues. Thevaluesargument is an array whose elements are thevalueobjects that are “mapped” to thekey. See below for requirements for thereducefunction. - out –
New in version 1.8.
Specifies the location of the result of the map-reduce operation. You can output to a collection, output to a collection with an action, or output inline. You may output to a collection when performing map reduce operations on the primary members of the set; on secondary members you may only use the
inlineoutput. - query – Optional. Specifies the selection criteria using query
operators for determining the documents
input to the
mapfunction. - sort – 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.
- limit – Optional. Specifies a maximum number of documents to return from the collection.
- finalize –
Optional. A JavaScript function that follows the
reducemethod and modifies the output.The
finalizefunction receives two arguments:keyandreducedValue. ThereducedValueis the value returned from thereducefunction for thekey. - scope (document) – Optional. Specifies global variables that are accessible in the
map,reduceand thefinalizefunctions. - jsMode (Boolean) –
New in version 2.0.
Optional. Specifies whether to convert intermediate data into BSON format between the execution of the
mapandreducefunctions.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.
The
jsModedefaults to false. - Internally, MongoDB converts the JavaScript objects emitted
by the
- verbose (Boolean) – Optional. Specifies whether to include the
timinginformation in the result information. Theverbosedefaults totrueto include thetiminginformation.
- map –
Requirements for the map Function¶
The map function has the following prototype:
The map function exhibits the following behaviors:
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.)The
emit(key,value)function associates thekeywith avalue.A single emit can only hold half of MongoDB’s maximum BSON document size.
The
mapfunction can callemit(key,value)any number of times, including 0, per each input document.The following
mapfunction may callemit(key,value)either 0 or 1 times depending on the value of the input document’sstatusfield:The following
mapfunction may callemit(key,value)multiple times depending on the number of elements in the input document’sitemsfield:
The
mapfunction can access the variables defined in thescopeparameter.
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. - 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.
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 to ensure that the following operations is true:the
reducefunction must be idempotent. Ensure that the following statement is true:the order of the elements in the
valuesArrayshould not affect the output of thereducefunction, so that the following statement is true:
out Options¶
You can specify the following options for the out parameter:
Output to a Collection¶
Output to a Collection with an Action¶
This option is only available when passing out a collection that
already exists. This option 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. Iftrueand you have enabled sharding on output database, the map-reduce operation will shard the output collection using the_idfield as the shard key.
nonAtomic:New in version 2.2.
Optional. Specify output operation as non-atomic and is valid only for
mergeandreduceoutput modes which may take minutes to execute.If
nonAtomicistrue, the post-processing step will prevent MongoDB from locking the database; however, other clients will be able to read intermediate states of the output collection. Otherwise the map reduce operation must lock the database during post-processing.
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.
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.
Map-Reduce Examples¶
Consider the following map-reduce operations on a collection orders
that contains documents of the following prototype:
Return the Total Price Per Customer Id¶
Perform map-reduce operation on the orders collection to group by
the cust_id, and for each cust_id, 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 the Number of Orders, Total Quantity, and 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 for each sku calculates the number of orders and the
total quantity ordered. 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
keySKUandvaluesCountObjects:valuesCountObjectsis an array whose elements are the objects mapped to the groupedkeySKUvalues passed by map function to the reducer function.- The function reduces the
valuesCountObjectsarray to a single objectreducedValuethat also contains thecountand theqtyfields. - In
reducedValue, 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
keyandreducedValue. The function modifies thereducedValueobject to add a computed field namedaverageand 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.
See also
- map-reduce and
mapReducecommand - Aggregation Framework