gpt4 book ai didi

MongoDB 聚合 : Combine two arrays

转载 作者:IT老高 更新时间:2023-10-28 13:30:34 26 4
gpt4 key购买 nike

我在集合中存储了以下类型的文档。

{
"_id" : "318036:2014010100",
"data": [
{"flow": [6, 10, 12], "occupancy": [0.0356, 0.06, 0.0856], time: 0},
{"flow": [2, 1, 4], "occupancy": [0.01, 0.0056, 0.0422], time: 30},
...
]
}

我想从流量和占用数组中的第一个、第二个、...、第 n 个值计算聚合值。应保留数组中的顺序。假设我想计算总和。结果应如下所示:

{
"_id" : "318036:2014010100",
"data": [
{"flow": [6, 10, 12], "occupancy": [0.0356, 0.06, 0.0856], sum: [6.0356, 10.006, 12.00856], time: 0},
{"flow": [2, 1, 4], "occupancy": [0.01, 0.0056, 0.0422], sum: [2.01, 1.0056, 4.0422], time: 30},
...
]
}

我试图通过使用聚合框架来解决这个问题,但我目前的方法没有保留顺序并且产生了很多总和。

db.sens.aggregate([ 
{$match: {"_id":/^318036:/}},
{$limit: 1},
{$unwind: "$data"},
{$unwind: "$data.flow"},
{$unwind: "$data.occupancy"},
{
$group: {
_id: {id: "$_id", time: "$data.time", o: "$data.occupancy", f: "$data.flow", s: {$add: ["$data.occupancy", "$data.flow"]}}
}
},
{
$group: {
_id: {id: "$_id.id", time: "$_id.time"}, occ: { $addToSet: "$_id.o"}, flow: {$addToSet: "$_id.f"}, speed: {$addToSet: "$_id.s"}
}
}
])

我不确定聚合框架是否可以解决这个问题,所以使用 MapReduce 的解决方案也可以。我怎样才能产生想要的结果?

最佳答案

既没有聚合框架也没有 map/reduce 的替代解决方案:

db.sens.find().forEach(function (doc) {
doc.data.forEach(function(dataElement) {
var sumArray = [];
for (var j = 0; j < dataElement.flow.length; j++) {
sumArray[j] = dataElement.flow[j] + dataElement.occupancy[j];
}
dataElement.sum = sumArray;
collection.save(doc);
});
});

关于MongoDB 聚合 : Combine two arrays,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26232821/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com