This visual execution shows how to design MongoDB schemas for write-heavy workloads. We start by identifying the workload and choosing between embedding or referencing data. Embedding stores related data in one document, reducing the number of write operations needed to insert or update data. Referencing stores related data in separate documents, which increases the number of writes but helps keep documents smaller and easier to manage. The execution table traces inserting orders with embedded customer data versus referencing customer data separately, showing fewer writes for embedding. Variable tracking confirms write counts. Key moments clarify why embedding reduces writes and when referencing causes more writes. The quiz tests understanding of write counts and schema choices. The snapshot summarizes key points for quick reference.