转载

MongoDB 排序超过内存限制的解决方法

对集合执行一个大排序操作(如聚合),出现以下错误:(测试版本:MongoDB 3.0.6)

> db.bigdata.aggregate(  {$group : {_id : "$range", total : { $sum : 1 }}},  {$sort : {total : -1}} ); #...  aggregate failed   at Error (<anonymous>)   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} );
正文到此结束
Loading...