繁体   English   中英

具有NodeJS驱动程序的MongoDB聚合游标

[英]MongoDB Aggregation Cursor with NodeJS Driver

我正在使用MongoDB v3.2,并且正在使用本机nodejs驱动程序v2.1。 在大型数据集(超过1mil个文档)上运行聚合管道时,遇到以下错误:

 'aggregation result exceeds maximum document size (16MB)'

这是我的聚合管道代码:

var eventCollection = myMongoConnection.db.collection('events');
var cursor = eventCollection.aggregate([
                {
                    $match: {
                        event_type_id: {$eq: 89012}
                    }
                },
                {
                    $group: {
                        _id: "$user_id",
                        score: {$sum: "$points"}
                    }
                },
                {
                    $sort: {
                        score: -1
                    }
                }
            ],
            {
                cursor: {
                    batchSize: 500
                },
                allowDiskUse: true,
                explain: false
            }, function () {

            });

我尝试过的事情:

//Using cursor event listeners. None of the on listeners seem to work. Always get error about 16mb.
cursor.on("data", function (data) {
   console.log("Some data: ", data);
});
cursor.on("end", function (data) {
   console.log("End of data: ", data);
});

//Using forEach. Which I thought would allow for >16mb because it's used in conjunction with the batchSize and cursor.
cursor.forEach(function (item) {

})

我在其他答案( 如何不超过最大文档大小的情况下编写聚合 )中看到,我需要让游标返回结果,那么我该如何正确地做到这一点? 我似乎无法正常工作。 关于batchSize应该是什么建议?

我正在使用本机mongodb软件包-https: //github.com/mongodb/node-mongodb-native用于nodejs项目而不是mongo命令行。

好吧,我知道了。 它不起作用,因为我将回调函数作为聚合方法中的最后一个参数传入。 通过传递null,它允许流按预期工作。 更改如下所示:

var cursor = eventCollection.aggregate([
            {
                $match: {
                    event_type_id: {$eq: 89012}
                }
            },
            {
                $group: {
                    _id: "$user_id",
                    score: {$sum: "$points"}
                }
            },
            {
                $sort: {
                    score: -1
                }
            }
        ],
        {
            cursor: {
                batchSize: 500
            },
            allowDiskUse: true,
            explain: false
        }, null);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM