- Reference >
- Database 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. The command also accepts 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.
The following is a prototype usage of the
mapReducecommand:- map –
Important
When connected to a mongos for a sharded
cluster, to use the mapReduce directly, you must
specify the all-lower-case form of the command (i.e.``mapreduce``.)
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 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