db.collection.mapReduce()
mongo
Shell Method
This page documents the mongo
shell method, and doesnot refer to the MongoDB Node.js driver (or any other driver)method. For corresponding MongoDB driver API, refer to your specificMongoDB driver documentation instead.
Note
Starting in version 4.2, MongoDB deprecates:
- The map-reduce option to create a new sharded collection as wellas the use of the sharded option formap-reduce. To output to a sharded collection, create the shardedcollection first. MongoDB 4.2 also deprecates the replacement ofan existing sharded collection.
- The explicit specification of nonAtomic: false option.
The db.collection.mapReduce()
method provides a wrapperaround the mapReduce
command.
Note
Views do not support map-reduce operations.
db.collection.mapReduce()
has the following syntax:
- db.collection.mapReduce(
- <map>,
- <reduce>,
- {
- out: <collection>,
- query: <document>,
- sort: <document>,
- limit: <number>,
- finalize: <function>,
- scope: <document>,
- jsMode: <boolean>,
- verbose: <boolean>,
- bypassDocumentValidation: <boolean>
- }
- )
db.collection.mapReduce()
takes the following parameters:
ParameterTypeDescriptionmap
functionA JavaScript function that associates or “maps” a value
with akey
and emits the key
and value pair
.
See Requirements for the map Function for more information.reduce
functionA JavaScript function that “reduces” to a single object all thevalues
associated with a particular key
.
See Requirements for the reduce Function for more information.options
documentA document that specifies additional parameters todb.collection.mapReduce()
.bypassDocumentValidation
booleanOptional. Enables mapReduce
to bypass document validationduring the operation. This lets you insert documents that do notmeet the validation requirements.
New in version 3.2.
The following table describes additional arguments thatdb.collection.mapReduce()
can accept.
FieldTypeDescriptionout
string or documentSpecifies the location of the result of the map-reduce operation.You can output to a collection, output to a collection with anaction, or output inline. You may output to a collection whenperforming map-reduce operations on the primary members of the set;on secondary members you may only use the inline
output.
See out Options for more information.query
documentSpecifies the selection criteria using query operators for determining the documents input to themap
function.sort
documentSorts the input documents. This option is useful foroptimization. For example, specify the sort key to be the same asthe emit key so that there are fewer reduce operations. The sort keymust be in an existing index for this collection.limit
numberSpecifies a maximum number of documents for the input into themap
function.finalize
functionOptional. Follows the reduce
method and modifies the output.
See Requirements for the finalize Function for more information.scope
documentSpecifies global variables that are accessible in the map
,reduce
and finalize
functions.jsMode
booleanSpecifies whether to convert intermediate data into BSONformat between the execution of the map
and reduce
functions.
Defaults to false
.
If false
:
- Internally, MongoDB converts the JavaScript objects emittedby the
map
function to BSON objects. These BSONobjects are then converted back to JavaScript objects whencalling thereduce
function. The map-reduce operation places the intermediate BSON objectsin temporary, on-disk storage. This allows the map-reduceoperation to execute over arbitrarily large data sets.If
true
:Internally, the JavaScript objects emitted during
map
function remain as JavaScript objects. There is no need toconvert the objects for thereduce
function, whichcan result in faster execution.- You can only use
jsMode
for result sets with fewer than500,000 distinctkey
arguments to the mapper’semit()
function.verbose
booleanSpecifies whether to include thetiming
information in theresult information. Setverbose
totrue
to includethetiming
information.
Defaults to false
.collation
documentOptional.
Specifies the collation to use for the operation.
Collation allows users to specifylanguage-specific rules for string comparison, such as rules forlettercase and accent marks.
The collation option has the following syntax:
- collation: {
- locale: <string>,
- caseLevel: <boolean>,
- caseFirst: <string>,
- strength: <int>,
- numericOrdering: <boolean>,
- alternate: <string>,
- maxVariable: <string>,
- backwards: <boolean>
- }
When specifying collation, the locale
field is mandatory; allother collation fields are optional. For descriptions of the fields,see Collation Document.
If the collation is unspecified but the collection has adefault collation (see db.createCollection()
), theoperation uses the collation specified for the collection.
If no collation is specified for the collection or for theoperations, MongoDB uses the simple binary comparison used in priorversions for string comparisons.
You cannot specify multiple collations for an operation. Forexample, you cannot specify different collations per field, or ifperforming a find with a sort, you cannot use one collation for thefind and another for the sort.
New in version 3.4.
Note
map-reduce operations
and $where
operator expressions cannot access certain global functions orproperties, such as db
, that are available in themongo
shell.
The following JavaScript functions and properties are available tomap-reduce operations
and $where
operator expressions:
Available PropertiesAvailable Functions
args
MaxKey
MinKey
assert()
BinData()
DBPointer()
DBRef()
doassert()
emit()
gc()
HexData()
hex_md5()
isNumber()
isObject()
ISODate()
isString()
Map()
MD5()
NumberInt()
NumberLong()
ObjectId()
print()
printjson()
printjsononeline()
sleep()
Timestamp()
tojson()
tojsononeline()
tojsonObject()
UUID()
version()
Requirements for the map Function
The map
function is responsible for transforming each input document intozero or more documents. It can access the variables defined in the scope
parameter, and has the following prototype:
- function() {
- ...
- emit(key, value);
- }
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 ofthe function (i.e. side effects.) - A single emit can only hold half of MongoDB’s maximum BSONdocument size.
- The
map
function may optionally callemit(key,value)
any number oftimes to create an output document associatingkey
withvalue
. - Starting in version 4.2.1, MongoDB deprecates the use of JavaScriptwith scope (i.e. BSON type 15) forthe
map
function. To scope variables, use thescope
parameterinstead.
The following map
function will call emit(key,value)
either0 or 1 times depending on the value of the input document’sstatus
field:
- function() {
- if (this.status == 'A')
- emit(this.cust_id, 1);
- }
The following map
function may call emit(key,value)
multiple times depending on the number of elements in the inputdocument’s items
field:
- function() {
- this.items.forEach(function(item){ emit(item.sku, 1); });
- }
Requirements for the reduce Function
The reduce
function has the following prototype:
- function(key, values) {
- ...
- return result;
- }
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 outsidesystem. - MongoDB will not call the
reduce
function for a keythat has only a single value. Thevalues
argument is an arraywhose elements are thevalue
objects that are “mapped” to thekey
. - MongoDB can invoke the
reduce
function more than once for thesame 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 definedin thescope
parameter. - The inputs to
reduce
must not be larger than half of MongoDB’smaximum BSON document size. Thisrequirement may be violated when large documents are returned and thenjoined together in subsequentreduce
steps. - Starting in version 4.2.1, MongoDB deprecates the use of JavaScriptwith scope (i.e. BSON type 15) forthe
reduce
function. To scope variables, use thescope
parameter instead.
Because it is possible to invoke the reduce
functionmore than once for the same key, the followingproperties need to be true:
the type of the return object must be identicalto the type of the
value
emitted by themap
function.the
reduce
function must be associative. The following statement must betrue:
- reduce(key, [ C, reduce(key, [ A, B ]) ] ) == reduce( key, [ C, A, B ] )
- the
reduce
function must be idempotent. Ensurethat the following statement is true:
- reduce( key, [ reduce(key, valuesArray) ] ) == reduce( key, valuesArray )
- the
reduce
function should be commutative: that is, the order of theelements in thevaluesArray
should not affect the output of thereduce
function, so that the following statement is true:
- reduce( key, [ A, B ] ) == reduce( key, [ B, A ] )
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 secondarymembers of replica sets.
- out: <collectionName>
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 wellas the use of the sharded option formap-reduce. To output to a sharded collection, create the shardedcollection first. MongoDB 4.2 also deprecates the replacement ofan existing sharded collection.
- The explicit specification of nonAtomic: false option.
This option is only available when passing a collection thatalready exists to out
. It is not availableon secondary members of replica sets.
- out: { <action>: <collectionName>
- [, db: <dbName>]
- [, sharded: <boolean> ]
- [, nonAtomic: <boolean> ] }
When you output to a collection with an action, the out
has thefollowing parameters:
<action>
: Specify one of the following actions:replace
Replace the contents of the <collectionName>
if thecollection with the <collectionName>
exists.
merge
Merge the new result with the existing result if theoutput collection already exists. If an existing documenthas the same key as the new result, overwrite thatexisting document.
reduce
Merge the new result with the existing result if theoutput collection already exists. If an existing documenthas the same key as the new result, apply the reduce
function to both the new and the existing documents andoverwrite the existing document with the result.
db
:
Optional. The name of the database that you want the map-reduceoperation to write its output. By default this will be the samedatabase as the input collection.
sharded
:
Note
Starting in version 4.2, the use of the sharded
option isdeprecated.
Optional. If true
and you have enabled sharding on outputdatabase, the map-reduce operation will shard the output collectionusing the _id
field as the shard key.
If true
and collectionName
is an existing unsharded collection,map-reduce fails.
nonAtomic
:
Note
Starting in MongoDB 4.2, explicitly setting nonAtomic
to false
isdeprecated.
Optional. Specify output operation as non-atomic. This applies onlyto the merge
and reduce
output modes, which may take minutes toexecute.
By default nonAtomic
is false
, and the map-reduceoperation locks the database during post-processing.
If nonAtomic
is true
, the post-processing step preventsMongoDB from locking the database: during this time, other clientswill be able to read intermediate states of the output collection.
Output Inline
Perform the map-reduce operation in memory and return the result. Thisoption is the only available option for out
on secondary members ofreplica sets.
- out: { inline: 1 }
The result must fit within the maximum size of a BSON document.
Requirements for the finalize Function
The finalize
function has the following prototype:
- function(key, reducedValue) {
- ...
- return modifiedObject;
- }
The finalize
function receives as its arguments a key
value and the reducedValue
from the reduce
function. Beaware that:
- The
finalize
function should not access the database forany reason. - The
finalize
function should be pure, or have no impactoutside of the function (i.e. side effects.) - The
finalize
function can access the variables defined inthescope
parameter. - Starting in version 4.2.1, MongoDB deprecates the use of JavaScriptwith scope (i.e. BSON type 15) forthe
finalize
function. To scope variables, use thescope
parameter instead.
Map-Reduce Examples
Consider the following map-reduce operations on a collectionorders
that contains documents of the following prototype:
- {
- _id: ObjectId("50a8240b927d5d8b5891743c"),
- cust_id: "abc123",
- ord_date: new Date("Oct 04, 2012"),
- status: 'A',
- price: 25,
- items: [ { sku: "mmm", qty: 5, price: 2.5 },
- { sku: "nnn", qty: 5, price: 2.5 } ]
- }
Return the Total Price Per Customer
Perform the map-reduce operation on the orders
collection to groupby the cust_id
, and calculate the sum of the price
for eachcust_id
:
Define the map function to process each input document:
- In the function,
this
refers to the document that themap-reduce operation is processing. - The function maps the
price
to thecust_id
for eachdocument and emits thecust_id
andprice
pair.
- In the function,
- var mapFunction1 = function() {
- emit(this.cust_id, this.price);
- };
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 thesum of its elements.
- The
- var reduceFunction1 = function(keyCustId, valuesPrices) {
- return Array.sum(valuesPrices);
- };
- Perform the map-reduce on all documents in the
orders
collectionusing themapFunction1
map function and thereduceFunction1
reduce function.
- db.orders.mapReduce(
- mapFunction1,
- reduceFunction1,
- { out: "map_reduce_example" }
- )
This operation outputs the results to a collection namedmap_reduce_example
. If the map_reduce_example
collectionalready exists, the operation will replace the contents with theresults 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 theorders
collection for all documents that have an ord_date
value greater than 01/01/2012
. The operation groups by theitem.sku
field, and calculates the number oforders and the total quantity ordered for each sku
. The operation concludes bycalculating the average quantity per order for each sku
value:
Define the map function to process each input document:
- In the function,
this
refers to the document that themap-reduce operation is processing. - For each item, the function associates the
sku
with a newobjectvalue
that contains thecount
of1
and theitemqty
for the order and emits thesku
andvalue
pair.
- In the function,
- var mapFunction2 = function() {
- for (var idx = 0; idx < this.items.length; idx++) {
- var key = this.items[idx].sku;
- var value = {
- count: 1,
- qty: this.items[idx].qty
- };
- emit(key, value);
- }
- };
Define the corresponding reduce function with two arguments
keySKU
andcountObjVals
:countObjVals
is an array whose elements are the objectsmapped to the groupedkeySKU
values passed by mapfunction to the reducer function.- The function reduces the
countObjVals
array to a singleobjectreducedValue
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 theindividual array elements.
- var reduceFunction2 = function(keySKU, countObjVals) {
- reducedVal = { count: 0, qty: 0 };
- for (var idx = 0; idx < countObjVals.length; idx++) {
- reducedVal.count += countObjVals[idx].count;
- reducedVal.qty += countObjVals[idx].qty;
- }
- return reducedVal;
- };
- Define a finalize function with two arguments
key
andreducedVal
. The function modifies thereducedVal
objectto add a computed field namedavg
and returns the modifiedobject:
- var finalizeFunction2 = function (key, reducedVal) {
- reducedVal.avg = reducedVal.qty/reducedVal.count;
- return reducedVal;
- };
- Perform the map-reduce operation on the
orders
collection usingthemapFunction2
,reduceFunction2
, andfinalizeFunction2
functions.
- db.orders.mapReduce( mapFunction2,
- reduceFunction2,
- {
- out: { merge: "map_reduce_example" },
- query: { ord_date:
- { $gt: new Date('01/01/2012') }
- },
- finalize: finalizeFunction2
- }
- )
This operation uses the query
field to select only thosedocuments with ord_date
greater than newDate(01/01/2012)
. Then it output the results to a collectionmap_reduce_example
. If the map_reduce_example
collectionalready exists, the operation will merge the existing contents withthe results of this map-reduce operation.
Output
The output of the db.collection.mapReduce()
method isidentical to that of the mapReduce
command. See theOutput section of the mapReduce
command for information on the db.collection.mapReduce()
output.
Restrictions
MongoDB drivers automatically set afterClusterTime for operations associated with causallyconsistent sessions. Starting in MongoDB 4.2, thedb.collection.mapReduce()
no longer supportafterClusterTime. As such,db.collection.mapReduce()
cannot be associatd withcausally consistent sessions.