OperationFailed Sort operation used more than the maximum 33554432 bytes of RAM. Add an index, or sp

Posted 阿里哈撒哟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OperationFailed Sort operation used more than the maximum 33554432 bytes of RAM. Add an index, or sp相关的知识,希望对你有一定的参考价值。

  按照错误提示,知道这是排序的时候报的错,因为 mongo 的 sort 操作是在内存中操作的,必然会占据内存,同时mongo 内的一个机制限制排序时最大内存为 32M,当排序的数据量超过 32M,就会报上面的这个错,解决办法就像上面提示的意思,一是加大 mongo 的排序内存,这个一般是运维来管,也有弊端,就是数据量如果再大,还要往上加。另一个办法就是加索引,这个方法还是挺方便的。创建索引及时生效,不需要重启服务。

  下面记录下 加大 mongo 的排序内存的方法,亲测有效:

进入mongodb所在目录下的bin目录,运行mongo,运行db.adminCommand({setParameter:1, internalQueryExecMaxBlockingSortBytes:335544320}),即可将32MB的内存更改为320MB;

不推荐此种方法;

  加索引的方法,博主并没有亲测,仅作参考:

  对需要排序的字段建索引 db.stotal.ensureIndex({‘type‘: -1}),索引字段根据自己的时间情况定。

 

以上是关于OperationFailed Sort operation used more than the maximum 33554432 bytes of RAM. Add an index, or sp的主要内容,如果未能解决你的问题,请参考以下文章

ACR1222L FF 82 Load Authentication Keys failed with 63 00 Operation Failed

operator.itemgetter() 和 sort() 是如何工作的?

python学习 -- operator.itemgetter(), list.sort/sorted 以及lambda函数

FlashFXP连接linux服务器(centos7环境)提示连接失败 (Unable to access SFTP sub-system, operation failed.)

Practice6_3_map_sort

CREATE OPERATOR - 定义一个新的操作符