thank_you
thank_you

Reputation: 11107

Maximum storage amount for document that has embedded documents

I understand that in MongoDB a BSON document can be no bigger than 16mb. Does this size limit account for embedded documents as well? I plan on having well over 16mb of documents inside the embedding document.

Upvotes: 0

Views: 136

Answers (1)

JohnnyHK
JohnnyHK

Reputation: 312045

A single MongoDB document cannot be larger than 16 MB and all of a document's embedded documents count toward this limit, so what you're planning won't work.

Upvotes: 2

Related Questions