我正在尝试在 Mongo 中使用 mapReduce 来计算给定值出现的次数。
这是我的 map 函数,我在其中测试以确保每个值都是字符串:
function mapFunction () {
function normalizeDate(date) {
var day = date.getDay(),
month = date.getMonth(),
year = date.getYear();
return new Date(year, month, day);
}
if (this.events.event.toString() === "[object Object]"
|| typeof(this.events.event) !== 'string') {
throw new Error("Not a string...");
}
emit(normalizeDate(this.date), this.events.event);
}
为了完整起见,这是我的 reduce 函数:
function reduceFunction (date, event_arry) {
return event_arry.reduce(function (a, b) {
if (a[b]) {
a[b]++;
}
else {
a[b] = 1;
}
return a;
}, {});
}
然后,我在 mongo repl 中运行 mapReduce:
mongos> db.events.mapReduce(mapFunction, reduceFunction, {out: 'mr_test'})
{
"result" : "mr_test",
"timeMillis" : 148,
"counts" : {
"input" : 3481,
"emit" : 3481,
"reduce" : 82,
"output" : 14
},
"ok" : 1,
}
并且没有错误,表明所有的event
s 都是 type string
。
然而,当我查看mr_test
集合中的输出时,我得到了几个这样的条目:
mongos> db.mr_test.find()
{ "_id" : ISODate("0113-04-05T00:00:00Z"), "value" : { "[object Object]" : 4 } }
{ "_id" : ISODate("0113-04-06T00:00:00Z"), "value" : { "[object Object]" : 5 } }
{ "_id" : ISODate("0113-04-30T00:00:00Z"), "value" : { "[object Object]" : 1, "eventTypeA" : 9, "eventTypeB" : 14, "eventTypeC" : 19 } }
对此有很好的解释吗?如果是这样,它是什么?