specify query conditions when parallelScanning mongodb DBCollection in Java

112 Views Asked by At

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?

1

There are 1 best solutions below

1
On BEST ANSWER

find() will batch the query results. By default, the batch size is 20 documents so it's pretty unlikely that find() is the culprit. You're likely holding on to too much data in your application.