

InterviewSolution
Saved Bookmarks
1. |
Point out the wrong statement.(a) Embedded data models make it possible to update related data in a single atomic write operation(b) Embedding related data in documents may lead to situations where documents grow after creation(c) With the MMAPv1 storage engine, document growth can impact write performance and lead to data fragmentation(d) All of the mentionedI have been asked this question in an online interview.This key question is from Data Modeling Concepts in chapter Data Models of MongoDB |
Answer» RIGHT answer is (d) All of the mentioned Easiest explanation: In version 3.0.0, MongoDB USES Power of 2 SIZED Allocations as the default allocation strategy for MMAPV1 in order to account for document growth, minimizing the likelihood of data FRAGMENTATION. |
|