I need to get a large DBCollection to the memory. Since DBCollection.find()
is not working, I used DBCollection.parallelScan()
to achieve this. But in parallelScan I can't specify a query condition like in DBCollection.find(query)
.
Is it possible to use query BasicDBObject
in parallelScan
?
find()
will batch the query results. By default, the batch size is 20 documents so it's pretty unlikely thatfind()
is the culprit. You're likely holding on to too much data in your application.