我无法判断MongoEngine是否支持聚合框架。
是否可以使用MongoEngine运行此查询?
db.collection.aggregate([
{ "$group": {
"_id": {
"year": { "$year": "$utc_timestamp" },
"month": { "$month": "$utc_timestamp" },
"day": { "$dayOfMonth": "$utc_timestamp" },
},
"defects": {
"$sum": { "$cond": [
{ "$eq": [ "$status", "defect" ] },
1,
0
]}
},
"totalCount": { "$sum": 1 }
}},
{ "$project": {
"defect_rate": {
"$cond": [
{ "$eq": [ "$defects", 0 ] },
0,
{ "$divide": [ "$defects", "$totalCount" ] }
]
}
}}
])
如果没有,我可以直接通过MongoEngine运行它(原始)吗?
答案 0 :(得分:8)
你可以获得原始"集合" pymongo驱动程序使用类上的._get_collection()方法实现的对象。
Class._get_collection().aggregate([
{ '$group': {
'_id': {
'year': { '$year': '$utc_timestamp' },
'month': { '$month': '$utc_timestamp' },
'day': { '$dayOfMonth': '$utc_timestamp' },
},
'defects': {
'$sum': { '$cond': [
{ '$eq': [ '$status', 'defect' ] },
1,
0
]}
},
'totalCount': { '$sum': 1 }
}},
{ '$project': {
'defect_rate': {
'$cond': [
{ '$eq': [ '$defects', 0 ] },
0,
{ '$divide': [ '$defects', '$totalCount' ] }
]
}
}}
])