Definition
cursor.batchSize(size)Important
mongosh Method
This is a
mongoshmethod. This is not the documentation forNode.jsor other programming language specific driver methods.In most cases,
mongoshmethods work the same way as the legacymongoshell methods. However, some legacy methods are unavailable inmongosh.For the legacy
mongoshell documentation, refer to the documentation for the corresponding MongoDB Server release:For MongoDB API drivers, refer to the language specific MongoDB driver documentation.
Specifies the number of documents to return in each batch of the response from the MongoDB instance. In most cases, modifying the batch size will not affect the user or the application, as
mongoshand most drivers return results as if MongoDB returned a single batch.Note
If the batch size is too large, the cursor allocates more resources than it requires, which can negatively impact query performance. If the batch size is too small, the cursor requires more network round trips to retrieve the query results, which can negatively impact query performance.
Adjust
batchSizeto a value appropriate to your database, load, and application needs.The
batchSize()method takes the following field:FieldTypeDescriptionsizeinteger
The initial number of documents to return for a batch. The default initial batch size is 101 documents. Subsequent batches are 16 megabytes. The default applies to drivers and Mongo Shell. For details, see Cursor Batches.
Compatibility
This method is available in deployments hosted in the following environments:
MongoDB Atlas: The fully managed service for MongoDB deployments in the cloud
Note
This command is supported in all MongoDB Atlas clusters. For information on Atlas support for all commands, see Unsupported Commands.
MongoDB Enterprise: The subscription-based, self-managed version of MongoDB
MongoDB Community: The source-available, free-to-use, and self-managed version of MongoDB
Example
The following example sets batchSize for the results of a query
(specifically, find()) to 10:
db.inventory.find().batchSize(10)