Onkar Janwa
Onkar Janwa

Reputation: 3950

What is the maximum length of a mongodb query?

I will execute a big query so i want to know what is the maximum length of a mongodb query ?

Upvotes: 16

Views: 17130

Answers (2)

M-A-X
M-A-X

Reputation: 492

16MB.

If more, you will receive error like this:

BSONObj size: 19489318 (0x1296226) is invalid. Size must be between 0 and 16793600(16MB)

Upvotes: 0

Adam Comerford
Adam Comerford

Reputation: 21682

The maximum size of a document, which is what you are constructing when you create a query is 16MB. You can see that, and other limits here:

http://docs.mongodb.org/manual/reference/limits/

Upvotes: 17

Related Questions