user837208
user837208

Reputation: 2577

What is the maximum number of documents that can be stored in a MongoDB collection?

I have not been able to locate the answer using Google search. I know that there is a default limit of 16k or so collections in a DB but what is the limit on number of documents that can be stored in a collection?

Upvotes: 4

Views: 1088

Answers (1)

Sergio Tulentsev
Sergio Tulentsev

Reputation: 230521

There's no hardcoded limit.

You're likely to have problems with your RAM and/or disk well before you hit this (non-existent) limit.

You can also increase namespace size and get more collections (but you probably know this already).

Upvotes: 3

Related Questions