Reputation: 3950
I will execute a big query so i want to know what is the maximum length of a mongodb query ?
Upvotes: 16
Views: 17130
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
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