我有一个MondoDB聚合管道,该管道通过聚合所有Sales
:来输出每日收入:
Sale.aggregate
([
{
$project: {
day: { $substr: ['$createdAt', 0, 10], },
},
},
{
$group: {
_id: '$day',
earnings: { $sum: '$pricing.earnings' },
},
},
{
$sort: {
_id: 1
}
},
{
$project: {
date: '$_id',
earnings: '$earnings',
},
},
{
$group: {
_id: null,
stats: { $push: '$$ROOT' },
}
},
{
$project: {
stats: {
$map: {
// returns an array with all dates between 2 provided params
input: dates.daysArray(dates.getDay(user.createdAt), dates.today()),
as: 'date',
in: {
$let: {
vars: { index: { $indexOfArray: ['$stats._id', '$$date'] } },
in: {
$cond: {
if: { $ne: ['$$index', -1] },
then: { $arrayElemAt: ['$stats', '$$index'] },
else: { _id: '$$date', date: '$$date', earnings: 0 }
}
}
}
}
}
}
}
},
{
$unwind: '$stats'
},
{
$replaceRoot: {
newRoot: '$stats'
}
},
{
$project: {
_id: 0,
x: '$date',
y: '$earnings',
},
},
])
此管道的输出可能如下所示:
[
{
x: '2019-01-09',
y: 10,
},
{
x: '2019-01-10',
y: 5,
},
{
x: '2019-01-11',
y: 20,
}
]
这意味着2019-01-09
的销售额为10美元,2019-01-10
的销售额为5美元,等等。
现在,我不想要每日收入,而是想要获得的所有收入的总和。 这意味着结果应如下所示:
[
{
x: '2019-01-09',
y: 10, // a total of $10 on the first day
},
{
x: '2019-01-10',
y: 15, // a total of $15 on the second day (10 + 5)
},
{
x: '2019-01-11',
y: 35, // a total of $35 on the third day (15 + 20)
}
]
所以基本上我不希望每日量,而是增长。
P.S .:我正在使用这些数据显示在图表中。
答案 0 :(得分:2)
除了现有的功能外,您还可以添加以下步骤
逻辑是$push
的x和y用于数组,使用$range
按索引迭代数组,以使x在$arrayElemAt
处获得index
,y达到$slice
和$sum
直到index+1
db.t51.aggregate([
{$group : {_id : null, x : {$push : "$x"}, y : {$push : "$y"}}},
{$project : {data : {
$map : {
input : {$range : [0, {$size : "$x"}]},
as : "idx",
in : { x : {$arrayElemAt : ["$x", "$$idx"]}, y : {$sum : {$slice : ["$y", {$sum : ["$$idx",1]}]}}}}
}}},
{$unwind : "$data"},
{$replaceRoot: {newRoot : "$data"}}
]).pretty()
如果您有更多要汇总或预测的字段,可以在以下阶段使用
db.t51.aggregate([
{$group : {_id : null, data : {$push : "$$ROOT"}}},
{$addFields : {data :
{$reduce : {
input : "$data",
initialValue : [{y : 0}],
in : {$concatArrays : [ "$$value",[{$mergeObjects : ["$$this", { y : {$sum : ["$$this.y",{$arrayElemAt : ["$$value.y", -1]}]}}]}]]}
}}
}},
{$addFields : {data : {$slice : ["$data", 1, {$size : "$data"}]}}},
{$unwind : "$data"},
{$replaceRoot: {newRoot : "$data"}}
]).pretty()
答案 1 :(得分:1)
聚合框架独立地(通过设计)独立处理所有文档,因此它们彼此之间不了解。更改的唯一方法是使用$group。将_id
设置为null
可以将所有文档中的数据捕获到一个文档中。然后,您可以遍历该数组(使用$range获取索引数组,使用$map返回另一个数组)。很容易获得x
($arrayElemAt),对于y
,您需要使用$reduce对所有数组元素求和。 $reduce
的输入由$slice运算符生成,并取决于索引(对于0
,将是[10]
,对于1
[10,5]
,依此类推)。要完成查询,您需要$unwind和$replaceRoot才能获得原始文档形状。
db.col.aggregate([
{
$sort: { x: 1 }
},
{
$group: {
_id: null,
xArr: { $push: "$x" },
yArr: { $push: "$y" }
}
},
{
$project: {
data: {
$map: {
input: { $range: [ 0, { $size: "$xArr" } ] },
as: "i",
in: {
x: { $arrayElemAt: [ "$xArr", "$$i" ] },
y: {
$reduce: {
input: { $slice: [ "$yArr", { $add: [ "$$i", 1 ] } ] },
initialValue: 0,
in: { $add: [ "$$this", "$$value" ] }
}
}
}
}
}
}
},
{
$unwind: "$data"
},
{
$replaceRoot: {
newRoot: "$data"
}
}
])
我想您需要将上述步骤附加到现有的汇总中。为了证明它有效,您可以将其运行为单独的集合:
db.col.save({ x: '2019-01-09', y: 10 })
db.col.save({ x: '2019-01-10', y: 5 })
db.col.save({ x: '2019-01-11', y: 20 })
并输出:
{ "x" : "2019-01-09", "y" : 10 }
{ "x" : "2019-01-10", "y" : 15 }
{ "x" : "2019-01-11", "y" : 35 }