我的mongodb集合中有以下文档:
{'name' : 'abc-1','parent':'abc', 'price': 10}
{'name' : 'abc-2','parent':'abc', 'price': 5}
{'name' : 'abc-3','parent':'abc', 'price': 9}
{'name' : 'abc-4','parent':'abc', 'price': 11}
{'name' : 'efg', 'parent':'', 'price': 10}
{'name' : 'efg-1','parent':'efg', 'price': 5}
{'name' : 'abc-2','parent':'efg','price': 9}
{'name' : 'abc-3','parent':'efg','price': 11}我想采取以下行动:
a. Group By distinct parent
b. Sort all the groups based on price
c. For each group select a document with minimum price
i. check each record's parent sku exists as a record in name field
ii. If the name exists, do nothing
iii. If the record does not exists, insert a document with parent as empty and other values as the value of the record selected previously (minimum value).我很想用以下每一种方法:
db.file.find().sort([("price", 1)]).forEach(function(doc){
cnt = db.file.count({"sku": {"$eq": doc.parent}});
if (cnt < 1){
newdoc = doc;
newdoc.name = doc.parent;
newdoc.parent = "";
delete newdoc["_id"];
db.file.insertOne(newdoc);
}
});问题是它需要太多的时间。这里怎么了?如何对其进行优化?如果是的话,聚合管道是否是一个好的解决方案?
发布于 2018-01-06 09:12:46
def product_names():db.file.aggregate中的乘积({$group:{_id:“$name”}):乘积‘_id’product_names = set(product_names())
result_set = db.file.aggregate( {‘$排序’:{‘价格’:1,},},{ '$group':{ '_id':'$parent','name':{ '$first':'$name',}“价格”:{ '$min':'$price',} },{‘$排序’:{‘价格’:1,})
可以在aggregation 管道中实现步骤2和3。
db.file.aggregate([
{
'$sort': {'price': 1}
},
{
'$group': {
'_id': '$parent',
'name': {
'$first': '$name'
},
'price': {
'$min': '$price'
},
}
},
{
'$sort': {
'price': 1
}
},
{
'$project': {
'name': 1,
'price': 1,
'_id': 0,
'parent':''
}
},
{
'$match': {
'name': {
'$nin': list(product_names())
}
}
},
{
'$out': 'file'
}
])https://stackoverflow.com/questions/48107682
复制相似问题