From MongoDB The Definitive Guide:

Documents larger than 4MB (when converted to BSON) cannot be saved to the database. This is a somewhat arbitrary limit (and may be raised in the future); it is mostly to prevent bad schema design and ensure consistent performance.

I don't understand this limit, does this mean that A Document containing a Blog post with a lot of comments which just so happens to be larger than 4MB cannot be stored as a single document?

Also does this count the nested documents too?

What if I wanted a document which audits the changes to a value. (It will eventually may grow, exceeding 4MB limit.)

Hope someone explains this correctly.

I have just started reading about MongoDB (first nosql database I'm learning about).

Thank you.

link|improve this question

1  
I think the question should clarify that this is a limitation of the MongoDB stored document sizes and not of the BSON format. – alexpopescu Jan 12 '11 at 14:03
@alexpopescu, you're right. – saint Jan 12 '11 at 14:48
Though, I just tried saving a huge document that most certainly exceeds 4MB to get the message "BSON::InvalidDocument: Document too large: BSON documents are limited to 4194304 bytes." If that's the case, isn't it kind of misleading in the warning/error message? – Nik Feb 24 '11 at 19:21
1  
You can easily find your max BSON document size with db.isMaster().maxBsonObjectSize/(1024*1024)+' MB' command in mongo shell. – ahmet alp balkan Oct 28 '11 at 16:39
feedback

2 Answers

up vote 24 down vote accepted

First off, this actually is being raised in the next version to 8MB or 16MB ... but I think to put this into prospective Eliot from 10gen (who devlope MongoDB) puts it best ...

So, on your blog example, 4MB is actually a whole lot.. For example, the full uncompresses text of "War of the Worlds" is only 364k (html): http://www.gutenberg.org/etext/36

If your blog post is that long with that many comments, I for one am not going to read it :)

For trackbacks, if you dedicated 1MB to them, you could easily have more than 10k (probably closer to 20k)

So except for truly bizarre situations, it'll work great. And in the exception case or spam, I really don't think you'd want a 20mb object anyway. I think capping trackbacks as 15k or so makes a lot of sense no matter what for performance. Or at least special casing if it ever happens.

-Eliot

I think you'd be pretty hard pressed to reach the limit ... and over time, if you upgrade ... you'll have to worry less and less.

The main point of the limit is so you don't use up all the RAM on your server (as you need to load all 4MB of the document into RAM when you query it.)

So the limit is some % of normal usable RAM on a common system ... which will keep growing year on year.

link|improve this answer
I don't really understand "The main point of the limit is so you don't use up all the RAM on your server". We keep our entire MongoDB database in RAM so is this still a concern? – Sean Bannister Dec 10 '11 at 14:03
That's awesome you have enough RAM for your entire database ... Typically the "working set" is in RAM, not the whole database (like in my case I have more than one x GBs databases where if all added up would exceed my RAM, but that's okay because the working set is much, much smaller.) Also, if there was no limit you might load a 800MB doc into RAM w/ one query and a 400k doc with another, making balancing your RAM a little difficult, and etc. So the "limit" is some % of typical server RAM (thus it grows over time.) mongodb.org/display/DOCS/Checking+Server+Memory+Usage – Justin Jenkins Dec 12 '11 at 6:46
It's great that you can store everything in RAM, but consider efficiency and the blog post idiom. You obviously want a post to be in memory if its read. But do you really want 10 pages of comments for a blog post to be in memory when most people will never read past the first page? Sure, you can do it and if your database is small enough that it can all fit in memory, then no problem. But in terms of pure efficiency, you do not want useless bits to take up memory space if you can avoid it (and that goes for RDBMS as well). – AlexGad Dec 24 '11 at 16:52
feedback

Perhaps storing a blog post -> comments relation in a non-relational database is not really the best design.

You should probably store comments in a separate collection to blog posts anyway.

[edit]

See comments below for further discussion.

link|improve this answer
Don't know about the best design at this early stage of the experience. The book gives a little example of a blog. Hence the thought. Thanks. – saint Jan 12 '11 at 10:30
6  
I don't agree at all. Comments in your blog post documents should be perfectly fine in MongoDB ... it's a very common use (I use it more than one place in production and it works quite well.) – Justin Jenkins Jan 12 '11 at 10:34
1  
I was perhaps overly strict in my answer. There's nothing wrong in storing blog posts and associated comments in MongoDB or similar database. It's more that people tend to overuse the abilities document based databases give (most radical example would be to store all your data in a single document called 'blog') – Mchl Jan 12 '11 at 10:44
4  
@SoPeople: storing comments within a post is like the canonical example of Document-oriented DBs. (like storing the entirety of a wiki text inside of one document) If I were to write SO it would run completely on MongoDB. None of these SO entries is going to reasonably exceed 4MB. Craigslist is doing a giant DB migration of their history to MongoDB. They only had a couple of docs go over that limit and the lead developer suggested that the docs themselves were actually busted (the result of some bugs). Again, 4 megs is several novels of text. – Gates VP Jan 12 '11 at 23:21
1  
@Gates VP, I agree about using a separate full text engine. I was thinking about a metadata search. What if you have a set of Book documents, and you want to find all books published in 1982? If each book has +100kb of text, you don't want to transfer several megabytes just to display the first 20 book titles. – mikerobi Jun 7 '11 at 16:43
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.