mongo排序操作使用的RAM超过最大33554432字节

时间:2017-09-15 16:35:50

标签: mongodb sorting mongo-shell

我正在尝试在mongo中对集合中的字段进行排序,这是查询,

db.results.find({}).sort({'date':1})

收到错误:

Sort operation used more than the maximum 33554432 bytes of RAM

我试图创建一个索引,

db.results.createIndex({'date':1})

然后执行上面的sort,在Robomongo 0.9.0

中出错了
The specified text was not found

如何正确地进行排序,以及如何在这种情况下从字段date获取ISO日期范围。

ps一个样本日期

2017-06-29 00:00:00.000Z
2017-06-27 00:00:00.000Z
2017-06-28 00:00:00.000Z
2017-06-30 00:00:00.000Z

0 个答案:

没有答案