我有一个包含以下文档的项集合。
{ "item" : "i1", "category" : "c1", "brand" : "b1" }
{ "item" : "i2", "category" : "c2", "brand" : "b1" }
{ "item" : "i3", "category" : "c1", "brand" : "b2" }
{ "item" : "i4", "category" : "c2", "brand" : "b1" }
{ "item" : "i5", "category" : "c1", "brand" : "b2" }
我想分离聚合结果-->按类别计数,按品牌计数。请注意,它不按(类别、品牌(计算
我可以使用以下代码使用map reduce来做到这一点。
map = function(){
emit({type:"category",category:this.category},1);
emit({type:"brand",brand:this.brand},1);
}
reduce = function(key, values){
return Array.sum(values)
}
db.item.mapReduce(map,reduce,{out:{inline:1}})
结果是
{
"results" : [
{
"_id" : {
"type" : "brand",
"brand" : "b1"
},
"value" : 3
},
{
"_id" : {
"type" : "brand",
"brand" : "b2"
},
"value" : 2
},
{
"_id" : {
"type" : "category",
"category" : "c1"
},
"value" : 3
},
{
"_id" : {
"type" : "category",
"category" : "c2"
},
"value" : 2
}
],
"timeMillis" : 21,
"counts" : {
"input" : 5,
"emit" : 10,
"reduce" : 4,
"output" : 4
},
"ok" : 1,
}
我可以通过以下两个不同的聚合命令来获得相同的结果。
db.item.aggregate({$group:{_id:"$category",count:{$sum:1}}})
db.item.aggregate({$group:{_id:"$brand",count:{$sum:1}}})
无论如何,我可以通过一个聚合命令使用聚合框架来做同样的事情吗。
我在这里简化了我的例子,但实际上我需要从子文档数组中的字段进行分组。假设以上是我放松后的结构。
它是一个实时查询(有人在等待响应(,尽管是在较小的数据集上,所以执行时间很重要。
我使用的是MongoDB 2.4。
从Mongo 3.4
开始,$facet
聚合阶段通过在同一组输入文档的单个阶段内处理多个聚合管道,极大地简化了这种类型的用例:
// { "item" : "i1", "category" : "c1", "brand" : "b1" }
// { "item" : "i2", "category" : "c2", "brand" : "b1" }
// { "item" : "i3", "category" : "c1", "brand" : "b2" }
// { "item" : "i4", "category" : "c2", "brand" : "b1" }
// { "item" : "i5", "category" : "c1", "brand" : "b2" }
db.collection.aggregate(
{ $facet: {
categories: [{ $group: { _id: "$category", count: { "$sum": 1 } } }],
brands: [{ $group: { _id: "$brand", count: { "$sum": 1 } } }]
}}
)
// {
// "categories" : [
// { "_id" : "c1", "count" : 3 },
// { "_id" : "c2", "count" : 2 }
// ],
// "brands" : [
// { "_id" : "b1", "count" : 3 },
// { "_id" : "b2", "count" : 2 }
// ]
// }
对于大数据集,我认为您当前的mapReduce方法将是最好的方法,因为用于此方法的聚合技术无法很好地处理大数据。但可能在一个相当小的尺寸上,它可能正是你所需要的:
db.items.aggregate([
{ "$group": {
"_id": null,
"categories": { "$push": "$category" },
"brands": { "$push": "$brand" }
}},
{ "$project": {
"_id": {
"categories": "$categories",
"brands": "$brands"
},
"categories": 1
}},
{ "$unwind": "$categories" },
{ "$group": {
"_id": {
"brands": "$_id.brands",
"category": "$categories"
},
"count": { "$sum": 1 }
}},
{ "$group": {
"_id": "$_id.brands",
"categories": { "$push": {
"category": "$_id.category",
"count": "$count"
}},
}},
{ "$project": {
"_id": "$categories",
"brands": "$_id"
}},
{ "$unwind": "$brands" },
{ "$group": {
"_id": {
"categories": "$_id",
"brand": "$brands"
},
"count": { "$sum": 1 }
}},
{ "$group": {
"_id": null,
"categories": { "$first": "$_id.categories" },
"brands": { "$push": {
"brand": "$_id.brand",
"count": "$count"
}}
}}
])
与mapReduce输出不同,您可以加入更多的阶段来更改输出格式,但这应该是可用的:
{
"_id" : null,
"categories" : [
{
"category" : "c2",
"count" : 2
},
{
"category" : "c1",
"count" : 3
}
],
"brands" : [
{
"brand" : "b2",
"count" : 2
},
{
"brand" : "b1",
"count" : 3
}
]
}
正如您所看到的,这涉及到在数组之间进行一些洗牌,以便在同一管道过程中对每组"类别"或"品牌"进行分组。我再说一遍,这对大数据来说不太好,但对"订单中的项目"这样的东西来说可能会做得很好。
当然,正如您所说,您已经在一定程度上简化了,所以null
上的第一个分组键要么是其他键,要么缩小到null
的情况,通过之前的$match
阶段,这可能是您想要做的。