SlideShare a Scribd company logo
FEBRUARY 15, 2018 | BELL HARBOR
#MDBlocal
Advanced Schema
Design Patterns
#MDBlocal
{ "name": "Daniel Coupal",
"jobs_at_MongoDB": [
{ "job": "Senior Curriculum Engineer",
"from": new Date("2016-11") },
{ "job": "Senior Technical Service Engineer",
"from": new Date("2013-11") }
],
"previous_jobs": [
"Consultant",
"Developer",
"Manager Quality & Tools Team",
"Manager Software Team",
"Tools Developer"
],
"likes": [ "food", "beers", "movies", "MongoDB" ],
"email": "daniel.coupal@mongodb.com"
}
Who Am I?
#MDBlocal
The "Gang of Four":
A design pattern systematically names, explains,
and evaluates an important and recurring design
in object-oriented systems
MongoDB systems can also be built using its own
patterns
PATTERN
Pattern
#MDBlocal
• 10 years with the document
model
• Use of a common
methodology and
vocabulary when designing
schemas for MongoDB
• Ability to model schemas
using building blocks
• Less art and more
methodology
Why this Talk?
#MDBlocal
Ensure:
• Good performance
• Scalability
despite constraints
• Hardware
• RAM faster than Disk
• Disk cheaper than RAM
• Network latency
• Reduce costs $$$
• Database Server
• Maximum size for a document
• Atomicity of a write
• Data set
• Size of data
Why do we Create Models?
#MDBlocal
However don't Over Design!
#MDBlocal
WMDB -
World Movie Database
Any events, characters and
entities depicted in this
presentation are fictional.
Any resemblance or similarity to
reality is entirely coincidental
#MDBlocal
WMDB -
World Movie Database
First iteration
3 collections:
A. movies
B. moviegoers
C. screenings
#MDBlocal
Our mission, should we decide to accept it, is to
fix this solution, so it can perform well and scale.
As always, should I or anyone in the audience do
it without training, WMDB will disavow any
knowledge of our actions.
This tape will self-destruct in five seconds. Good
luck!
Mission Possible
#MDBlocal
#MDBlocal
• Frequency of Access
• Subset ✔️
• Approximation ✔️
• Extended Reference
Patterns by Category
• Grouping
• Computed ✔️
• Bucket
• Outlier
• Representation
• Attribute ✔️
• Schema Versioning ✔️
• Document Versioning
• Tree
• Polymorphism
• Pre-Allocation
#MDBlocal
{
title: "Dunkirk",
...
release_USA: "2017/07/23",
release_Mexico: "2017/08/01",
release_France: "2017/08/01",
release_Festival_San_Jose:
"2017/07/22"
}
Would need the following indexes:
{ release_USA: 1 }
{ release_Mexico: 1 }
{ release_France: 1 }
...
{ release_Festival_San_Jose: 1 }
...
Issue #1: Big Documents, Many Fields
and Many Indexes
#MDBlocal
Pattern #1: Attribute
{
title: "Dunkirk",
...
release_USA: "2017/07/23",
release_Mexico: "2017/08/01",
release_France: "2017/08/01",
release_Festival_San_Jose:
"2017/07/22"
}
#MDBlocal
Problem:
• Lots of similar fields
• Common characteristic to search across those fields together
• Fields present in only a small subset of documents
Use cases:
• Product attributes like ‘color’, ‘size’, ‘dimensions’, ...
• Release dates of a movie in different countries, festivals
Attribute Pattern
#MDBlocal
Solution:
• Field pairs in an array
Benefits:
• Allow for non deterministic list of attributes
• Easy to index
{ "releases.location": 1, "releases.date": 1 }
• Easy to extend with a qualifier, for example:
{ descriptor: "price", qualifier: "euros", value: Decimal(100.00) }
Attribute Pattern - Solution
#MDBlocal
Possible solutions:
A. Reduce the size of your working set
B. Add more RAM per machine
C. Start sharding or add more shards
Issue #2: Working Set doesn’t fit in RAM
#MDBlocal
WMDB -
World Movie Database
First iteration
3 collections:
A. movies
B. moviegoers
C. screenings
#MDBlocal
In this example, we can:
• Limit the list of actors and
crew to 20
• Limit the embedded reviews
to the top 20
• …
Pattern #2: Subset
#MDBlocal
Problem:
• There is a 1-N or N-N relationship, and only a few documents
always need to be shown
• Only infrequently do you need to pull all of the depending
documents
Use cases:
• Main actors of a movie
• List of reviews or comments
Subset Pattern
#MDBlocal
Solution:
• Keep duplicates of a small subset of fields in the main collection
Benefits:
• Allows for fast data retrieval and a reduced working set size
• One query brings all the information needed for the "main page"
Subset Pattern - Solution
#MDBlocal
Question:
• Which new MongoDB 3.6 feature will allow me to notify an
application if the name of an actor is changed?
Quiz A
Subset Pattern
#MDBlocal
• CPU is on fire!
Issue #3: Lot of CPU Usage
#MDBlocal
{
title: "The Shape of Water",
...
viewings: 5,000
viewers: 385,000
revenues: 5,074,800
}
Issue #3: ..caused by repeated calculations
#MDBlocal
For example:
• Apply a sum, count, ...
• rollup data by minute, hour,
day
• As long as you don’t mess
with your source, you can
recreate the rollups
Pattern #3: Computed
#MDBlocal
Problem:
• There is data that needs to be computed
• The same calculations would happen over and over
• Reads outnumber writes:
• example: 1K writes per hour vs 1M read per hour
Use cases:
• Have revenues per movie showing, want to display sums
• Time series data, Event Sourcing
Computed Pattern
#MDBlocal
Solution:
• Apply a computation or operation on data and store the result
Benefits:
• Avoid re-computing the same thing over and over
Computed Pattern - Solution
#MDBlocal
Question:
• Which Relational Database feature is typically used to mimic the
computed pattern?
Quiz B
Computed Pattern
#MDBlocal
Issue #4: Lots of Writes
#MDBlocal
Issue #4: … for non critical data
#MDBlocal
• Only increment once in X
iterations
• Increment by X
Pattern #4: Approximation
#MDBlocal
#MDBlocal
Problem:
• Data is difficult to calculate correctly
• May be too expensive to update the document every time to keep
an exact count
• No one gives a damn if the number is exact
Use cases:
• Population of a country
• Web site visits
Approximation Pattern
#MDBlocal
Solution:
• Fewer stronger writes
Benefits:
• Less writes, reducing contention on some documents
Approximation Pattern –
Solution
#MDBlocal
• Keeping track of the schema version of a document
Issue #5: Need to change the list of fields in the
documents
#MDBlocal
Add a field to track the
schema version number, per
document
Does not have to exist for
version 1
Pattern #5: Schema Versioning
#MDBlocal
Problem:
• Updating the schema of a database is:
• Not atomic
• Long operation
• May not want to update all documents, only do it on updates
Use cases:
• Practically any database that will go to production
Schema Versioning Pattern
#MDBlocal
Solution:
• Have a field keeping track of the schema version
Benefits:
• Don't need to update all the documents at once
• May not have to update documents until their next modification
Schema Versioning Pattern –
Solution
#MDBlocal
BACK to reality
#MDBlocal
• How duplication is handled
A. Update both source and target in real time
B. Update target from source at regular intervals. Examples:
• Most popular items => update nightly
• Revenues from a movie => update every hour
• Last 10 reviews => update hourly? daily?
Aspect of Patterns: Consistency
#MDBlocal
What our Patterns did for us
Problem Pattern
Messy and Large Documents Attribute
Too much RAM Subset
Too much CPU Computed
Too many disk accesses Approximation
No downtime to upgrade schema Schema Versioning
#MDBlocal
• Bucket
• grouping documents together, to have less documents
• Document Versioning
• tracking of content changes in a document
• Outlier
• Avoid few documents drive the design, and impact performance for all
• External Reference
• Tree(s)
• Polymorphism
• Pre-allocation
Other Patterns
#MDBlocal
A. Simple grouping from tables to collections is not optimal
B. Learn a common vocabulary for designing schemas with MongoDB
C. Use patterns as "plug-and-play" to improve performance
Take Aways
#MDBlocal
A full design example for a
given problem:
• E-commerce site
• Contents Management
System
• Social Networking
• Single view
• …
References for complete Solutions
#MDBlocal
• More patterns in a follow up to this presentation
• MongoDB in-person training courses on Schema Design
• Upcoming Online course at
MongoDB University:
• https://university.mongodb.com
• Data Modeling
How Can I Learn More About Schema Design?
#MDBlocal
Question:
• Which Pattern is used in the
following document?
{ "name": "Daniel Coupal",
"jobs_at_MongoDB": [
{ "job": "Senior Curriculum Engineer",
"from": new Date("2016-11") },
{ "job": "Senior Technical Service Engineer",
"from": new Date("2013-11") }
],
"previous_jobs": [
"Consultant",
"Developer",
"Manager Quality & Tools Team",
"Manager Software Team",
"Tools Developer"
],
"likes": [ "food", "beers", "movies", "MongoDB" ],
"email": "daniel.coupal@mongodb.com"
}
Quiz C
Which Pattern is used
#MDBlocal
Thank You for using MongoDB !

More Related Content

PPTX
The Path to Truly Understanding Your MongoDB Data
PPTX
Solving Your Backup Needs Using Ops Manager, Cloud Manager and Atlas
PPTX
Sizing Your MongoDB Cluster
PDF
MongoDB .local Munich 2019: MongoDB Atlas Auto-Scaling
PDF
MongoDB .local Munich 2019: MongoDB Atlas Data Lake Technical Deep Dive
PDF
Overcoming Today's Data Challenges with MongoDB
PPTX
L’architettura di Classe Enterprise di Nuova Generazione
PPTX
MongoDB San Francisco 2013: Storing eBay's Media Metadata on MongoDB present...
The Path to Truly Understanding Your MongoDB Data
Solving Your Backup Needs Using Ops Manager, Cloud Manager and Atlas
Sizing Your MongoDB Cluster
MongoDB .local Munich 2019: MongoDB Atlas Auto-Scaling
MongoDB .local Munich 2019: MongoDB Atlas Data Lake Technical Deep Dive
Overcoming Today's Data Challenges with MongoDB
L’architettura di Classe Enterprise di Nuova Generazione
MongoDB San Francisco 2013: Storing eBay's Media Metadata on MongoDB present...

What's hot (20)

PPTX
MongoDB and RDBMS: Using Polyglot Persistence at Equifax
PDF
Webinar: Introducing the MongoDB Connector for BI 2.0 with Tableau
PPTX
Benefits of Using MongoDB Over RDBMSs
PPTX
Secure, Low Latency with MongoDB
PPTX
Unlocking Operational Intelligence from the Data Lake
PPTX
MongoDB Atlas
PPTX
Webinar: An Enterprise Architect’s View of MongoDB
PDF
MongoDB Europe 2016 - MongoDB Atlas
PPTX
[MongoDB.local Bengaluru 2018] The Path to Truly Understanding Your MongoDB Data
PDF
MongoDB Europe 2016 - Using MongoDB to Build a Fast and Scalable Content Repo...
KEY
MongoDB vs Mysql. A devops point of view
PDF
Big Data Spain 2016: Keynote
PPTX
An Enterprise Architect's View of MongoDB
PPTX
Webinar: Simplifying the Database Experience with MongoDB Atlas
PPTX
MongoDB Operations for Developers
PPTX
How Insurance Companies Use MongoDB
PPTX
[MongoDB.local Bengaluru 2018] Jumpstart: Introduction to Schema Design
PDF
MongoDB .local Munich 2019: Mastering MongoDB on Kubernetes – MongoDB Enterpr...
PPT
MongoATL: How Sourceforge is Using MongoDB
PDF
MongoDB: Agile Combustion Engine
MongoDB and RDBMS: Using Polyglot Persistence at Equifax
Webinar: Introducing the MongoDB Connector for BI 2.0 with Tableau
Benefits of Using MongoDB Over RDBMSs
Secure, Low Latency with MongoDB
Unlocking Operational Intelligence from the Data Lake
MongoDB Atlas
Webinar: An Enterprise Architect’s View of MongoDB
MongoDB Europe 2016 - MongoDB Atlas
[MongoDB.local Bengaluru 2018] The Path to Truly Understanding Your MongoDB Data
MongoDB Europe 2016 - Using MongoDB to Build a Fast and Scalable Content Repo...
MongoDB vs Mysql. A devops point of view
Big Data Spain 2016: Keynote
An Enterprise Architect's View of MongoDB
Webinar: Simplifying the Database Experience with MongoDB Atlas
MongoDB Operations for Developers
How Insurance Companies Use MongoDB
[MongoDB.local Bengaluru 2018] Jumpstart: Introduction to Schema Design
MongoDB .local Munich 2019: Mastering MongoDB on Kubernetes – MongoDB Enterpr...
MongoATL: How Sourceforge is Using MongoDB
MongoDB: Agile Combustion Engine
Ad

Similar to Advanced Schema Design Patterns (20)

PDF
Advanced Schema Design Patterns
PPTX
Advanced Schema Design Patterns
PPTX
Advanced Schema Design Patterns
PPTX
SH 1 - SES 1 - advanced_schema_design.pptx
PPTX
SH 1 - SES 1 - advanced_schema_design.pptx
PPTX
Advanced Schema Design Patterns
PPTX
Open Source North - MongoDB Advanced Schema Design Patterns
PPTX
MongoDB.local Dallas 2019: Advanced Schema Design Patterns
PDF
MongoDB .local Munich 2019: A Complete Methodology to Data Modeling for MongoDB
PPTX
MongoDB.local Seattle 2019: Advanced Schema Design Patterns
PDF
MongoDB Europe 2016 - The Rise of the Data Lake
PPTX
How to Survive as a Data Architect in a Polyglot Database World
PPTX
Why Organizations are Looking at Alternative Database Technologies – Introduc...
PPTX
L’architettura di classe enterprise di nuova generazione
PDF
Framing the Argument: How to Scale Faster with NoSQL
PDF
Startup Bootcamp - Intro to NoSQL/Big Data by DataZone
PDF
MongoDB: What, why, when
PPTX
Webinar: When to Use MongoDB
KEY
PDF
MongoDB World 2018: Data Analytics with MongoDB
Advanced Schema Design Patterns
Advanced Schema Design Patterns
Advanced Schema Design Patterns
SH 1 - SES 1 - advanced_schema_design.pptx
SH 1 - SES 1 - advanced_schema_design.pptx
Advanced Schema Design Patterns
Open Source North - MongoDB Advanced Schema Design Patterns
MongoDB.local Dallas 2019: Advanced Schema Design Patterns
MongoDB .local Munich 2019: A Complete Methodology to Data Modeling for MongoDB
MongoDB.local Seattle 2019: Advanced Schema Design Patterns
MongoDB Europe 2016 - The Rise of the Data Lake
How to Survive as a Data Architect in a Polyglot Database World
Why Organizations are Looking at Alternative Database Technologies – Introduc...
L’architettura di classe enterprise di nuova generazione
Framing the Argument: How to Scale Faster with NoSQL
Startup Bootcamp - Intro to NoSQL/Big Data by DataZone
MongoDB: What, why, when
Webinar: When to Use MongoDB
MongoDB World 2018: Data Analytics with MongoDB
Ad

More from MongoDB (20)

PDF
MongoDB SoCal 2020: Migrate Anything* to MongoDB Atlas
PDF
MongoDB SoCal 2020: Go on a Data Safari with MongoDB Charts!
PDF
MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
PDF
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
PDF
MongoDB SoCal 2020: From Pharmacist to Analyst: Leveraging MongoDB for Real-T...
PDF
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
PDF
MongoDB SoCal 2020: MongoDB Atlas Jump Start
PDF
MongoDB .local San Francisco 2020: Powering the new age data demands [Infosys]
PDF
MongoDB .local San Francisco 2020: Using Client Side Encryption in MongoDB 4.2
PDF
MongoDB .local San Francisco 2020: Using MongoDB Services in Kubernetes: any ...
PDF
MongoDB .local San Francisco 2020: Go on a Data Safari with MongoDB Charts!
PDF
MongoDB .local San Francisco 2020: From SQL to NoSQL -- Changing Your Mindset
PDF
MongoDB .local San Francisco 2020: MongoDB Atlas Jumpstart
PDF
MongoDB .local San Francisco 2020: Tips and Tricks++ for Querying and Indexin...
PDF
MongoDB .local San Francisco 2020: Aggregation Pipeline Power++
PDF
MongoDB .local San Francisco 2020: A Complete Methodology of Data Modeling fo...
PDF
MongoDB .local San Francisco 2020: MongoDB Atlas Data Lake Technical Deep Dive
PDF
MongoDB .local San Francisco 2020: Developing Alexa Skills with MongoDB & Golang
PDF
MongoDB .local Paris 2020: Realm : l'ingrédient secret pour de meilleures app...
PDF
MongoDB .local Paris 2020: Upply @MongoDB : Upply : Quand le Machine Learning...
MongoDB SoCal 2020: Migrate Anything* to MongoDB Atlas
MongoDB SoCal 2020: Go on a Data Safari with MongoDB Charts!
MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
MongoDB SoCal 2020: From Pharmacist to Analyst: Leveraging MongoDB for Real-T...
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
MongoDB SoCal 2020: MongoDB Atlas Jump Start
MongoDB .local San Francisco 2020: Powering the new age data demands [Infosys]
MongoDB .local San Francisco 2020: Using Client Side Encryption in MongoDB 4.2
MongoDB .local San Francisco 2020: Using MongoDB Services in Kubernetes: any ...
MongoDB .local San Francisco 2020: Go on a Data Safari with MongoDB Charts!
MongoDB .local San Francisco 2020: From SQL to NoSQL -- Changing Your Mindset
MongoDB .local San Francisco 2020: MongoDB Atlas Jumpstart
MongoDB .local San Francisco 2020: Tips and Tricks++ for Querying and Indexin...
MongoDB .local San Francisco 2020: Aggregation Pipeline Power++
MongoDB .local San Francisco 2020: A Complete Methodology of Data Modeling fo...
MongoDB .local San Francisco 2020: MongoDB Atlas Data Lake Technical Deep Dive
MongoDB .local San Francisco 2020: Developing Alexa Skills with MongoDB & Golang
MongoDB .local Paris 2020: Realm : l'ingrédient secret pour de meilleures app...
MongoDB .local Paris 2020: Upply @MongoDB : Upply : Quand le Machine Learning...

Recently uploaded (20)

PDF
Electronic commerce courselecture one. Pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPT
Teaching material agriculture food technology
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
cuic standard and advanced reporting.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Cloud computing and distributed systems.
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
Spectroscopy.pptx food analysis technology
PDF
Machine learning based COVID-19 study performance prediction
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Big Data Technologies - Introduction.pptx
Electronic commerce courselecture one. Pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
Teaching material agriculture food technology
Reach Out and Touch Someone: Haptics and Empathic Computing
cuic standard and advanced reporting.pdf
Network Security Unit 5.pdf for BCA BBA.
Digital-Transformation-Roadmap-for-Companies.pptx
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Cloud computing and distributed systems.
Advanced methodologies resolving dimensionality complications for autism neur...
Unlocking AI with Model Context Protocol (MCP)
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Chapter 3 Spatial Domain Image Processing.pdf
MIND Revenue Release Quarter 2 2025 Press Release
Spectroscopy.pptx food analysis technology
Machine learning based COVID-19 study performance prediction
NewMind AI Weekly Chronicles - August'25 Week I
The Rise and Fall of 3GPP – Time for a Sabbatical?
Spectral efficient network and resource selection model in 5G networks
Big Data Technologies - Introduction.pptx

Advanced Schema Design Patterns

  • 1. FEBRUARY 15, 2018 | BELL HARBOR #MDBlocal Advanced Schema Design Patterns
  • 2. #MDBlocal { "name": "Daniel Coupal", "jobs_at_MongoDB": [ { "job": "Senior Curriculum Engineer", "from": new Date("2016-11") }, { "job": "Senior Technical Service Engineer", "from": new Date("2013-11") } ], "previous_jobs": [ "Consultant", "Developer", "Manager Quality & Tools Team", "Manager Software Team", "Tools Developer" ], "likes": [ "food", "beers", "movies", "MongoDB" ], "email": "daniel.coupal@mongodb.com" } Who Am I?
  • 3. #MDBlocal The "Gang of Four": A design pattern systematically names, explains, and evaluates an important and recurring design in object-oriented systems MongoDB systems can also be built using its own patterns PATTERN Pattern
  • 4. #MDBlocal • 10 years with the document model • Use of a common methodology and vocabulary when designing schemas for MongoDB • Ability to model schemas using building blocks • Less art and more methodology Why this Talk?
  • 5. #MDBlocal Ensure: • Good performance • Scalability despite constraints • Hardware • RAM faster than Disk • Disk cheaper than RAM • Network latency • Reduce costs $$$ • Database Server • Maximum size for a document • Atomicity of a write • Data set • Size of data Why do we Create Models?
  • 7. #MDBlocal WMDB - World Movie Database Any events, characters and entities depicted in this presentation are fictional. Any resemblance or similarity to reality is entirely coincidental
  • 8. #MDBlocal WMDB - World Movie Database First iteration 3 collections: A. movies B. moviegoers C. screenings
  • 9. #MDBlocal Our mission, should we decide to accept it, is to fix this solution, so it can perform well and scale. As always, should I or anyone in the audience do it without training, WMDB will disavow any knowledge of our actions. This tape will self-destruct in five seconds. Good luck! Mission Possible
  • 11. #MDBlocal • Frequency of Access • Subset ✔️ • Approximation ✔️ • Extended Reference Patterns by Category • Grouping • Computed ✔️ • Bucket • Outlier • Representation • Attribute ✔️ • Schema Versioning ✔️ • Document Versioning • Tree • Polymorphism • Pre-Allocation
  • 12. #MDBlocal { title: "Dunkirk", ... release_USA: "2017/07/23", release_Mexico: "2017/08/01", release_France: "2017/08/01", release_Festival_San_Jose: "2017/07/22" } Would need the following indexes: { release_USA: 1 } { release_Mexico: 1 } { release_France: 1 } ... { release_Festival_San_Jose: 1 } ... Issue #1: Big Documents, Many Fields and Many Indexes
  • 13. #MDBlocal Pattern #1: Attribute { title: "Dunkirk", ... release_USA: "2017/07/23", release_Mexico: "2017/08/01", release_France: "2017/08/01", release_Festival_San_Jose: "2017/07/22" }
  • 14. #MDBlocal Problem: • Lots of similar fields • Common characteristic to search across those fields together • Fields present in only a small subset of documents Use cases: • Product attributes like ‘color’, ‘size’, ‘dimensions’, ... • Release dates of a movie in different countries, festivals Attribute Pattern
  • 15. #MDBlocal Solution: • Field pairs in an array Benefits: • Allow for non deterministic list of attributes • Easy to index { "releases.location": 1, "releases.date": 1 } • Easy to extend with a qualifier, for example: { descriptor: "price", qualifier: "euros", value: Decimal(100.00) } Attribute Pattern - Solution
  • 16. #MDBlocal Possible solutions: A. Reduce the size of your working set B. Add more RAM per machine C. Start sharding or add more shards Issue #2: Working Set doesn’t fit in RAM
  • 17. #MDBlocal WMDB - World Movie Database First iteration 3 collections: A. movies B. moviegoers C. screenings
  • 18. #MDBlocal In this example, we can: • Limit the list of actors and crew to 20 • Limit the embedded reviews to the top 20 • … Pattern #2: Subset
  • 19. #MDBlocal Problem: • There is a 1-N or N-N relationship, and only a few documents always need to be shown • Only infrequently do you need to pull all of the depending documents Use cases: • Main actors of a movie • List of reviews or comments Subset Pattern
  • 20. #MDBlocal Solution: • Keep duplicates of a small subset of fields in the main collection Benefits: • Allows for fast data retrieval and a reduced working set size • One query brings all the information needed for the "main page" Subset Pattern - Solution
  • 21. #MDBlocal Question: • Which new MongoDB 3.6 feature will allow me to notify an application if the name of an actor is changed? Quiz A Subset Pattern
  • 22. #MDBlocal • CPU is on fire! Issue #3: Lot of CPU Usage
  • 23. #MDBlocal { title: "The Shape of Water", ... viewings: 5,000 viewers: 385,000 revenues: 5,074,800 } Issue #3: ..caused by repeated calculations
  • 24. #MDBlocal For example: • Apply a sum, count, ... • rollup data by minute, hour, day • As long as you don’t mess with your source, you can recreate the rollups Pattern #3: Computed
  • 25. #MDBlocal Problem: • There is data that needs to be computed • The same calculations would happen over and over • Reads outnumber writes: • example: 1K writes per hour vs 1M read per hour Use cases: • Have revenues per movie showing, want to display sums • Time series data, Event Sourcing Computed Pattern
  • 26. #MDBlocal Solution: • Apply a computation or operation on data and store the result Benefits: • Avoid re-computing the same thing over and over Computed Pattern - Solution
  • 27. #MDBlocal Question: • Which Relational Database feature is typically used to mimic the computed pattern? Quiz B Computed Pattern
  • 29. #MDBlocal Issue #4: … for non critical data
  • 30. #MDBlocal • Only increment once in X iterations • Increment by X Pattern #4: Approximation
  • 32. #MDBlocal Problem: • Data is difficult to calculate correctly • May be too expensive to update the document every time to keep an exact count • No one gives a damn if the number is exact Use cases: • Population of a country • Web site visits Approximation Pattern
  • 33. #MDBlocal Solution: • Fewer stronger writes Benefits: • Less writes, reducing contention on some documents Approximation Pattern – Solution
  • 34. #MDBlocal • Keeping track of the schema version of a document Issue #5: Need to change the list of fields in the documents
  • 35. #MDBlocal Add a field to track the schema version number, per document Does not have to exist for version 1 Pattern #5: Schema Versioning
  • 36. #MDBlocal Problem: • Updating the schema of a database is: • Not atomic • Long operation • May not want to update all documents, only do it on updates Use cases: • Practically any database that will go to production Schema Versioning Pattern
  • 37. #MDBlocal Solution: • Have a field keeping track of the schema version Benefits: • Don't need to update all the documents at once • May not have to update documents until their next modification Schema Versioning Pattern – Solution
  • 39. #MDBlocal • How duplication is handled A. Update both source and target in real time B. Update target from source at regular intervals. Examples: • Most popular items => update nightly • Revenues from a movie => update every hour • Last 10 reviews => update hourly? daily? Aspect of Patterns: Consistency
  • 40. #MDBlocal What our Patterns did for us Problem Pattern Messy and Large Documents Attribute Too much RAM Subset Too much CPU Computed Too many disk accesses Approximation No downtime to upgrade schema Schema Versioning
  • 41. #MDBlocal • Bucket • grouping documents together, to have less documents • Document Versioning • tracking of content changes in a document • Outlier • Avoid few documents drive the design, and impact performance for all • External Reference • Tree(s) • Polymorphism • Pre-allocation Other Patterns
  • 42. #MDBlocal A. Simple grouping from tables to collections is not optimal B. Learn a common vocabulary for designing schemas with MongoDB C. Use patterns as "plug-and-play" to improve performance Take Aways
  • 43. #MDBlocal A full design example for a given problem: • E-commerce site • Contents Management System • Social Networking • Single view • … References for complete Solutions
  • 44. #MDBlocal • More patterns in a follow up to this presentation • MongoDB in-person training courses on Schema Design • Upcoming Online course at MongoDB University: • https://university.mongodb.com • Data Modeling How Can I Learn More About Schema Design?
  • 45. #MDBlocal Question: • Which Pattern is used in the following document? { "name": "Daniel Coupal", "jobs_at_MongoDB": [ { "job": "Senior Curriculum Engineer", "from": new Date("2016-11") }, { "job": "Senior Technical Service Engineer", "from": new Date("2013-11") } ], "previous_jobs": [ "Consultant", "Developer", "Manager Quality & Tools Team", "Manager Software Team", "Tools Developer" ], "likes": [ "food", "beers", "movies", "MongoDB" ], "email": "daniel.coupal@mongodb.com" } Quiz C Which Pattern is used
  • 46. #MDBlocal Thank You for using MongoDB !

Editor's Notes

  • #2: Welcome May not have time for questions, however come see me at the end [Remember] Beware of transitions, keep them smooth [TODOs] Add the page numbers Drawing of a working set Consider removing ":" in the slide titles Consider changing "revenues" => revenue, in few slides More on the value and use cases for each pattern
  • #3: Previous Jobs => Gang of Four I like Food, Beers and Movies … and MongoDB. My inspiration for this talk comes from the "Gang of Four". How many of you are familiar with the "Gang of Four"?
  • #4: Building blocks, Some patterns, => Same for MongoDB Basically the ones who wrote this book on "Design Patterns" GOF are Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides https://en.wikipedia.org/wiki/Design_Patterns Key words are "Elements of Reusable Software" Assemble their experience on designing and implementing software over the years They found that a lot of the solutions were sharing some "patterns" Examples of patterns from "Design Patterns" Types: Creational (5), Structural (7), Behavioral (11) Singleton (restrict the creation to a single object for a given class) Observer (number of objects to see an event) Command (user operation) Decorator (embellishing a UI element) Memento (ability to restore an object to a previous state) … So, they went and made a catalog of those "patterns". The idea is enable people who write software to share a common language and have building blocks for solutions.
  • #5: 10 Years, Vocabulary, Building Blocks, "Art", => Why create models? We use that contents in our internal trainings, however is it the first time we are presenting it at a conference, well… including the "data modeling" workshop we ran yesterday. The goal is not to teach you about doing schema design. I am expecting you to either have done some with MongoDB or with a Relational Database My goal is to help you formalize the process of creating schemas for MongoDB, help you work in team by sharing visuals, vocabulary
  • #6: Performance & scalability, "air" Before we get going, let's just answer why we create models. In a perfect world, you don't really have to model. I mean if everything is super fast and resources are abundant, you really don't care where and how data is stored Every day I get up I don't make plans on how I will breathe air. However if you go to space or under water, you will need a "design" that will let you get the amount of air you need.
  • #7: Design is optional, cost of developer, 5 or 10 shards If performance is not an issue, meaning you have resources to spare, then you are likely to model for simplicity. The reason is that software engineers are very expensive. You may not think so, but your manager does. If you need to shard the database, it is likely that performance is very important Why using 10 shards, if you can reduce the number of operations (reads and writes) by 2 and be able to do the same with 5 shards?
  • #8: Fictional site, Entities In order to illustrate this talk, let's assume there is a fictional site called the "World Movie Database". This site is so popular that everyone goes there on Thursdays before the release of new movies and it crashes the site. Then some people tried to migrate the site to a NoSQL database, MongoDB obviously.
  • #9: Collections, grouping not optimal => accept challenge This is the first try of trying to move the schema from Relational to MongoDB. There are 3 collections: movies, moviegoers and screenings. Simply grouping entities into collections is not optimal. The solution using this design did not perform much better than the previous one. This is still normalized. When you remove this restriction, duplication is fine, 1-1 relationships are fine. You open the door to some important transformations. Those will be our patterns. [NOTE] Use "Sync Visibility" once you activate the color layer to also see it in the PNG file.
  • #10: Perform & Scale, without training Our goal, no need to say, is to fix this website before it gets the same fate as this tape recorder.
  • #11: Some heroes need a lot of gadgets to achieve their mission. We will do our with a very powerfull one, patterns.
  • #12: Categories, top 5 most frequent patterns We will use patterns, like the Gang of Four. Most patterns can be grouped in 3 categories. We will cover those patterns identified with check marks in this presentation. Also, I will cover the patterns in order of importance, or so. For the other ones, I will refer you to the slides of this presentation and subsequent content we will have on the subject.
  • #13: Documents are too big How do I search on movies being released on a given date in the USA? The same would apply to products you could see on E-commerce site. For example, clothes may have a size that is expressed as S, M, L, while for some other products like a laptop, size would be something like 13", 15"
  • #14: Transitions Don't mention that you used this pattern in your personal info, as it is now a Quiz
  • #15: Inventory of things to insure Polymorphic entities Vehicles: submarine, car
  • #16: "Adding a qualifier on the attribute" may be "currency"
  • #17: Definition of Working set With everyone pounding on the WMDB site, it was observed that the working set does not fit in memory. What can you do? Looking at the design we see that we are putting all the actors and all reviews for a given movie in the main document [TODO] Add a drawing showing what the working set is
  • #18: Remember this collection in the middle?
  • #19: The collection "castandcrew" contains all the actors, but also the producers, costume makers, stunts, etc. For this pattern to be worth it, it has to have a fair amount of information left aside.
  • #20: Top level information for a first page If this is slow, you may not keep your users on the site You want them to validate that this is what they want, then dig for more if needed
  • #22: Please come see us at the Education booth, we have prizes for people who will get the answers right
  • #24: As you may guess, people pay attention to the popularity of the movies. So, metrics like "revenues" and "viewers" are really important. In the current design, those numbers are calculated every time the page of a movie is displayed. Let’s calculate those numbers once in a while and stick the results on the page instead.
  • #25: Also refer to "Rolled up" as CQRS - Command Query Responsibility Segregation According to Bryan, that sounds good at a Party.
  • #29: Another thing that was observed with the current design is that trying to keep track of all page views of the site resulted in very poor performance. That was seen for both MMAPv1 and WT. In MMAPv1, you get a lot of threads looking for the write lock. While with WT, you get a lot of write conflicts that need to be retried. One solution is to record "good enough" numbers. Well no one cares that the count is 100 millions or 100 millions and few. What is the tolerance level here? Let’s assume 1000. In this case, we will let the application update the page views by 1000, however only 1/1000th of the time. Statistically, we should get a result very close to the exact count, however doing only 1/1000th of the writes. If you make the parallel to a movie, we never see a movie as a continuous image, the movie is made by displaying 24 static images per second, however this is enough to our eyes to not see the discontinuties. How do you do that? Let’s have the application run a (X mod 1000) operation, where X is a random number. If the result is 0, let’s update the counter by 1000.
  • #30: Another thing that was observed with the current design is that trying to keep track of all page views of the site resulted in very poor performance. That was seen for both MMAPv1 and WT. In MMAPv1, you get a lot of threads looking for the write lock. While with WT, you get a lot of write conflicts that need to be retried. One solution is to record "good enough" numbers. Well no one cares that the count is 100 millions or 100 millions and few. What is the tolerance level here? Let’s assume 1000. In this case, we will let the application update the page views by 1000, however only 1/1000th of the time. Statistically, we should get a result very close to the exact count, however doing only 1/1000th of the writes. If you make the parallel to a movie, we never see a movie as a continuous image, the movie is made by displaying 24 static images per second, however this is enough to our eyes to not see the discontinuities. How do you do that? Let’s have the application run a (X mod 1000) operation, where X is a random number. If the result is 0, let’s update the counter by 1000.
  • #31: You can have a counter. Once you reach the count, you do the write. Or you can use a random generator and when you get a specific value, you do the write. As you guess, this simple pattern is also applicable to Relational databases. … it is just that NoSQL people have more tricks to handle performance bottlenecks.
  • #35: Let's face it configuration management and database usually don't work well together. Database tend to keep the "latest" state of your data, while "CM" systems remember everything. Those of us who checked in stupid mistakes in Git, ClearCase, etc know CM systems have a very long memory. For this pattern, we are keeping track of the shape of the document. We are not addressing keeping track of the different contents of the document it self. This other case is solved by the Document Versioning pattern.
  • #36: Instead of using a "version" field, we could discover the version number based on fields
  • #37: - Few million references would not even fit into an embedded array. And if it did, you would not want to construct a query by passing a million values to the $in operator.
  • #39: MongoDB has been around for many years. We wish we could have gone in the future few years ago and see how people use our database. That did not happen. However, now we know better how people are designing with MongoDB. We are able to identify patterns because we have seen a lot of models. Those are "plug-and-play" elements that let you go faster in your designs. Will we are on the subject of the future, I do believe MongoDB has a bright future. Most data that could be put in a Relational Database is already there. We are left with: Data this is "not square", meaning it does not fit well in square tables. Large datasets We believe the document model and the scalability of MongoDB are prime to store those data sets. Ensure you are ready for the future by becoming an expert on MongoDB and how to model for it We did use a fictional site, however all the patterns we used would also apply to "Internet of Things", "Single View", "E-commerce" solutions.
  • #40: Let’s pause from our pattern list, and let’s examine a characteristic or aspect of some patterns.
  • #42: We touch a little bit the bucket pattern when we looked at the outlier one. The bucket pattern let you group X sub-documents into one document. When the bucket is full, you create another one. Pre-allocation will be the case where you pre-create an array of cells to have the reads and writes easily access the elements. This is a very important pattern if you are using MMAPv1, as continuously growing an array can have a negative effect. With Wired Tiger it is not as crucial, however may make the code in the application simpler. As for Trees are commonly represented by either having one node per document, where you can list the parent, the children, the ancestors, or a combination of those
  • #43: 10 years of experience, building schema with the document model You may not know about all the solutions, however we collected those over our 10 years of working with customers. If you follow these advices, good things will happen. Armed with those patterns, you may fell like a SuperHero, more powerful
  • #44: My goal was to introduce you to patterns, however if you want more complete solutions to common problems, there are few good books out there. Let me point you to those 2: The Little Mongo DB Schema Design Book Paperback, by Christian Kvalheim MongoDB Applied Design Patterns, by Rick Copeland
  • #45: I am leaving you with where you can find more information about schema design M320/Data Modeling is likely to be available around April 2018