- Reference >
mongoshMethods >- Cursor Methods >
- cursor.batchSize()
cursor.batchSize()¶
On this page
Definition¶
-
cursor.batchSize(size)¶ Important
mongoshMethodThis page documents a
mongoshmethod. This is not the documentation for a language-specific driver such as Node.js.For MongoDB API drivers, refer to the language-specific :driver:`MongoDB driver documentation </>`.
For the legacy
mongoshell documentation, refer to the documentation for the corresponding MongoDB Server release: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 :driver:`drivers </>` return results as if MongoDB returned a single batch.The
batchSize()method takes the following parameter:Parameter Type Description sizeinteger The number of documents to return per batch. Do not use a batch size of 1.Note
Specifying
1or a negative number is analogous to using thelimit()method.
Example¶
The following example sets the batch size for the results of a query
(i.e. find()) to 10. The
batchSize() method does not change the
output in mongosh, which, by default, iterates over the
first 20 documents.