Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the Maximum Depth of Embedded Documents Allowed in MongoDb? [duplicate]

I would like to know if mongodb has a limitation on the depth of embedded documents in a mongo document. I am not concerned about the 16MB limit on mongo documents only about the number of subsequently embedded documents allowed. In other words, in the example below how many times is the child embedded document allowed to be repeated until mongo does not allow of insertion of this document into a mongodb collection.

{
child: {
 child: {
  child : {
        (child repeated n times)
}}}}
like image 986
aruuuuu Avatar asked Oct 25 '25 05:10

aruuuuu


1 Answers

MongoDB supports no more than 100 levels of nesting for BSON documents.

See mongodb limits

like image 191
Ori Dar Avatar answered Oct 26 '25 18:10

Ori Dar