Optimizar MongoDB
Modifique la cantidad de Ram para las colecciones
db.adminCommand({setParameter: 1, internalQueryExecMaxBlockingSortBytes:150151432})
com.mongodb.MongoQueryException: Query failed with error code 96 and error message 'Executor error during find command :: caused by :: errmsg: "Sort operation used more than the maximum 50151432 bytes of RAM. Add an index, or specify a smaller limit."' on server 127.0.0.1:27017Cree indices en Mongodb para optimizar los consultas
db.articulo.createIndex({idarticulo:1})Last updated