无法运行 MongoDB 聚合命令(OperationFailure)

我正在尝试在 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 }


一只萌萌小番薯
浏览 242回答 1
1回答

红糖糍粑

我认为在指定数据库上运行聚合函数时不需要通过给出参数来再次指定集合。我在这里(https://docs.mongodb.com/manual/reference/command/aggregate/#command-fields)发现有一个集合参数,所以我将函数调用更改为:mongo.test.aggregate(aggregate="test", pipeline=self.pipeline)现在效果很好。有些文档从未提到集合参数。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python