我正在尝试在 python 中使用 MongoDB 聚合管道命令(使用 PyMongo),但遇到此错误:
pymongo.errors.OperationFailure: {aggregate: 1} is not valid for '$match'; a collection is required., full error: {'ok': 0.0, 'errmsg': "{aggregate: 1} is not valid for '$match'; a collection is required.", 'code': 73, 'codeName': 'InvalidNamespace'}
我尝试删除第一个匹配项,但它只会将“$match”更改为“$project”。这是我正在使用的管道:
[
{
"$match": {"$text": {"$search": "{self.keyword}"}}
},
{
"$project":
{
"wholeDate": {"$dateFromString": {"dateString": "$date"}},
"year": {"$year": {"$dateFromString": {"dateString": "$date"}}},
}
},
{
"$match": {"wholeDate": {"$gte": "{self.date_from_}", "$lte": "{self.date_until_}"}}
},
{
"$group":
{
"_id": {"year": "$year"},
"count": {"$sum": 1}
}
}
]
当我直接在 MongoDB 上运行相同的管道时,它工作得很好。工作时应该给出以下输出:
{ "_id" : { "year" : 2018 }, "count" : 34 }
红糖糍粑
相关分类