MongoDB 排序超过内存限制怎么办
来源:爱站网时间:2020-12-10编辑:网友分享
小编在使用MongoDB的时候遇到过MongoDB 排序超过内存限制的情况,那么MongoDB 排序超过内存限制怎么办呢?下面我们就一起去看看具体的解决方法吧。
小编在使用MongoDB的时候遇到过MongoDB 排序超过内存限制的情况,那么MongoDB 排序超过内存限制怎么办呢?下面我们就一起去看看具体的解决方法吧。
对集合执行一个大排序操作(如聚合),出现以下错误:(测试版本:MongoDB 3.0.6)
> db.bigdata.aggregate( {$group : {_id : "$range", total : { $sum : 1 }}}, {$sort : {total : -1}} ); #... aggregate failed at Error () at doassert (src/mongo/shell/assert.js:11:14) #... Error: command failed: { "errmsg" : "exception: Sort exceeded memory limit of 104857600 bytes, but did not opt in to external sorting. Aborting operation. Pass allowDiskUse:true to opt in.", "code" : 16819, "ok" : 0 }
解决方法
参考文档: Memory Restrictions
在MongoDB中,内排序大内存限制最大为100M,如果执行一个更大的排序,需要使用 allowDiskUse 选项来将数据写到临时文件来排序。
在查询语句中添加 allowDiskUse 选项:
db.bigdata.aggregate( [ {$group : {_id : "$range", total : { $sum : 1 }}}, {$sort : {total : -1}} ], {allowDiskUse: true} );
MongoDB排序超过内存限制怎么办的内容为大家介绍到这里了,爱站技术频道小编将会为大家整理更多MongoDB方面的知识,想要无时无刻都学习到这方面知识,就多多关注爱站技术频道的动态吧!
上一篇:MongoDB数据查询方法介绍