I'm just learning mapReduce. I have the following map reduce function being called on a collection of users.
function () {
m = function () {
emit(this.city, {num:1, arr:this});
}
r = function (key, arr_values) {
var resultArray = [];
var count = 0;
arr_values.forEach(function (value) {
resultArray.push(value);
count++;
});
return {num:count, arr:resultArray};
}
res = db.AdsOnPage.mapReduce(m, r, {out:"ReducedCollection"});
}
This ends up giving me what I need -- "city" as a key, and then an array of the users in that city as the value. But it's actually giving it to me in an absurd number of nested arrays. I assume this happens as a result of sharding? But how do I rejoin everything? Right now, the results look something like this:
{
"city":"Chicago",
"value" : {
"num" : 2.0,
"arr" : [{
"num" : 2.0,
"arr" : [{
"num" : 1.0,
"arr" : [{
<user doc is here>
}]
}, {
"num" : 1.0,
"arr" : [{
<user doc is here>
}]
}]
}
.......
for many many arrays
Why is this happening? Is there any way to rejoin my results into a coherent single array?