SlideShare a Scribd company logo
Sharding Methods For
MongoDB
Jay Runkel
jay.runkel@mongodb.com
@jayrunkel
#MongoDB
2
• Customer Stories
• Sharding for Performance/Scale
– When to shard?
– How many shards do I need?
• Types of Sharding
• How to Pick a Shard Key
• Sharding for Other Reasons
Agenda
Customer Stories
4
5
• 50M users.
• 6B check-ins to date (6M per day growth).
• 55M points of interest / venues.
• 1.7M merchants using the platform for marketing
• Operations Per Second: 300,000
• Documents: 5.5B
Foursquare
6
• 11 MongoDB clusters
– 8 are sharded
• Largest cluster has 15 shards (check ins)
– Sharded on user id
Foursquare clusters
7
• Large data set
CarFax
8
• 13 billion+ documents
– 1.5 billion documents added every year
• 1 vehicle history report is > 200 documents
• 12 Shards
• 9-node replica sets
• Replicas distributed across 3 data centers
CarFax Shards
9
What is Sharding?
12
Sharding Overview
Primary
Secondary
Secondary
Shard 1
Primary
Secondary
Secondary
Shard 2
Primary
Secondary
Secondary
Shard 3
Primary
Secondary
Secondary
Shard N
…
Query
Router
Query
Router
Query
Router
……
Driver
Application
14
Scaling: Sharding
mongod
Read/Write Scalability
Key Range
0..100
15
Scaling: Sharding
Read/Write Scalability
mongod mongod
Key Range
0..50
Key Range
51..100
16
Scaling: Sharding
mongod mongod mongod mongod
Key Range
0..25
Key Range
26..50
Key Range
51..75
Key Range
76.. 100
Read/Write Scalability
How do I know I need to shard?
18
Does one server/replica…
• Have enough disk space to store
all my data?
• Handle my query throughput
(operations per second)?
• Respond to queries fast enough
(latency)?
19
• Have enough disk space to store
all my data?
• Handle my query throughput
(operations per second)?
• Respond to queries fast enough
(latency)?
Does one server/replica set…
Server Specs
Disk Capacity
Disk IOPS
RAM
Network
Disk IOPS
RAM
Network
How many shards do I need?
21
• Sum of disk space across shards > greater than
required storage size
Disk Space: How Many Shards Do I
Need?
22
• Sum of disk space across shards > greater than
required storage size
Disk Space: How Many Shards Do I
Need?
Example
Storage size = 3 TB
Server disk capacity = 2 TB
2 Shards Required
23
• Working set should fit in RAM
– Sum of RAM across shards > Working Set
• WorkSet = Indexes plus the set of documents
accessed frequently
• WorkSet in RAM 
– Shorter latency
– Higher Throughput
RAM: How Many Shards Do I Need?
24
• Measuring Index Size and Working Set
db.stats() – index size of each collection
db.serverStatus({ workingSet: 1}) – working
set size estimate
RAM: How Many Shards Do I Need?
25
• Measuring Index Size and Working Set
db.stats() – index size of each collection
db.serverStatus({ workingSet: 1}) – working
set size estimate
RAM: How Many Shards Do I Need?
Example
Working Set = 428 GB
Server RAM = 128 GB
428/128 = 3.34
4 Shards Required
26
• Sum of IOPS across shards > greater than
required IOPS
• IOPS are difficult to estimate
– Update doc
– Update indexes
– Append to journal
– Log entry?
• Best approach – build a prototype and measure
Disk Throughput: How Many Shards
Do I Need
27
• Sum of IOPS across shards > greater than
required IOPS
• IOPS are difficult to estimate
– Update doc
– Update indexes
– Append to journal
– Log entry?
• Best approach – build a prototype and measure
Disk Throughput: How Many Shards
Do I Need
Example
Required IOPS = 11000
Server disk IOPS = 5000
3 Shards Required
28
• S = ops/sec of a single server
• G = required ops/sec
• N = # of shards
• G = N * S * .7
N = G/.7S
OPS: How Many Shards Do I Need?
29
• S = ops/sec of a single server
• G = required ops/sec
• N = # of shards
• G = N * S * .7
N = G/.7S
OPS: How Many Shards Do I Need?
Sharding Overhead
30
• S = ops/sec of a single server
• G = required ops/sec
• N = # of shards
• G = N * S * .7
N = G/.7S
OPS: How Many Shards Do I Need?
Example
S = 4000
G = 10000
N = 3.57
4 Shards
Types of Sharding
32
• Range
• Tag-Aware
• Hashed
Sharding Types
33
Range Sharding
mongod mongod mongod mongod
Key Range
0..25
Key Range
26..50
Key Range
51..75
Key Range
76.. 100
Read/Write Scalability
34
Tag-Aware Sharding
mongod mongod mongod mongod
Shard Tags
Shard Tag Start End
Winter 23 Dec 21 Mar
Spring 22 Mar 21 Jun
Summer 21 Jun 23 Sep
Fall 24 Sep 22 Dec
Tag Ranges
Winter Spring Summer Fall
35
Hash-Sharding
mongod mongod mongod mongod
Hash Range
0000..4444
Hash Range
4445..8000
Hash Range
i8001..aaaa
Hash Range
aaab..ffff
36
Hashed shard key
• Pros:
– Evenly distributed writes
• Cons:
– Random data (and index) updates can be IO
intensive
– Range-based queries turn into scatter gather
Shard 1
mongos
Shard 2 Shard 3 Shard N
37
Range sharding document
distribution
38
Hashed sharding document
distribution
How do I Pick A Shard Key
40
Shard Key characteristics
• A good shard key has:
– sufficient cardinality
– distributed writes
– targeted reads ("query isolation")
• Shard key should be in every query if possible
– scatter gather otherwise
• Choosing a good shard key is important!
– affects performance and scalability
– changing it later is expensive
41
Low cardinality shard key
• Induces "jumbo chunks"
• Examples: boolean field
Shard 1
mongos
Shard 2 Shard 3 Shard N
[ a, b )
42
Ascending shard key
• Monotonically increasing shard key values
cause "hot spots" on inserts
• Examples: timestamps, _id
Shard 1
mongos
Shard 2 Shard 3 Shard N
[ ISODate(…), $maxKe
Reasons to Shard
44
• Scale
– Data volume
– Query volume
• Global deployment with local writes
– Geography aware sharding
• Tiered Storage
• Fast backup restore
Reasons to shard
45
Global Deployment/Local Writes
Primary:NYC
Secondary:NYC
Primary:LON
Primary:SYD
Secondary:LON
Secondary:NYC
Secondary:SYD
Secondary:LON
Secondary:SYD
46
• Save hardware costs
• Put frequently accessed documents on fast
servers
– Infrequently accessed documents on less capable
servers
• Use Tag aware sharding
Tiered Storage
mongod mongod mongod mongod
Current Current Archive Archive
SSD SSD HDD HDD
47
• 40 TB Database
• 2 shards of 20 TB each
• Challenge
– Cannot meet restore SLA after data loss
Fast Restore
mongod mongod
20 TB 20 TB
48
• 40 TB Database
• 4 shards of 10 TB each
• Solution
– Reduce the restore time by 50%
Fast Restore
mongod mongod
10 TB 10 TB
mongod mongod
10 TB 10 TB
Summary
50
• To determine required # of shards determine
– Storage requirements
– Latency requirements
– Throughput requirements
• Derive total
– Disk capacity
– Disk throughput
– RAM
• Calculate # of shards based upon individual
server specs
Determining the # of shards
51
• Scalability
• Geo-aware clusters
• Tiered Storage
• Reduce backup restore times
Leverage Sharding For
52
• MongoDB Manual:
http://docs.mongodb.org/manual/sharding/
• Other Webinars:
– How to Achieve Scale With MongoDB
• White Papers
– MongoDB Performance Best Practices
– MongoDB Architecture Guide
Sharding: Where to go from here…
Get Expert Advice on Scaling. For Free.
For a limited time, if
you’re considering a
commercial
relationship with
MongoDB, you can
sign up for a free one
hour consult about
scaling with one of our
MongoDB Engineers.
Sign Up: http://bit.ly/1rkXcfN
54
Webinar Q&A
jay.runkel@mongodb.com
@jayrunkel
Stay tuned
after the
webinar and
take our
survey for your
chance to win
MongoDB
swag.
Thank You

More Related Content

PDF
Intro to HBase
PDF
Redo log improvements MYSQL 8.0
PPTX
Introduction to Redis
PDF
Apache Hudi: The Path Forward
PDF
Intro To MongoDB
PDF
Ceph: Open Source Storage Software Optimizations on Intel® Architecture for C...
PPTX
MongoDB
PDF
Wars of MySQL Cluster ( InnoDB Cluster VS Galera )
Intro to HBase
Redo log improvements MYSQL 8.0
Introduction to Redis
Apache Hudi: The Path Forward
Intro To MongoDB
Ceph: Open Source Storage Software Optimizations on Intel® Architecture for C...
MongoDB
Wars of MySQL Cluster ( InnoDB Cluster VS Galera )

What's hot (20)

PDF
Introduction to MongoDB
PDF
Apache Spark on K8S Best Practice and Performance in the Cloud
PDF
Cassandra Introduction & Features
PDF
The Complete MariaDB Server tutorial
PDF
MySQL Database Architectures - InnoDB ReplicaSet & Cluster
PDF
Linux tuning to improve PostgreSQL performance
PDF
MariaDB Performance Tuning and Optimization
PPTX
PDF
Introduction to Cassandra
PDF
[오픈소스컨설팅]Day #1 MySQL 엔진소개, 튜닝, 백업 및 복구, 업그레이드방법
PPTX
Basics of MongoDB
PPTX
introduction to NOSQL Database
PDF
Oracle Enterprise Manager Cloud Control 13c for DBAs
PDF
PDF
The Full MySQL and MariaDB Parallel Replication Tutorial
PDF
[2018] MySQL 이중화 진화기
PDF
Inside Parquet Format
PDF
Deep Dive on ClickHouse Sharding and Replication-2202-09-22.pdf
PDF
ProxySQL High Avalability and Configuration Management Overview
PDF
Cassandra Database
Introduction to MongoDB
Apache Spark on K8S Best Practice and Performance in the Cloud
Cassandra Introduction & Features
The Complete MariaDB Server tutorial
MySQL Database Architectures - InnoDB ReplicaSet & Cluster
Linux tuning to improve PostgreSQL performance
MariaDB Performance Tuning and Optimization
Introduction to Cassandra
[오픈소스컨설팅]Day #1 MySQL 엔진소개, 튜닝, 백업 및 복구, 업그레이드방법
Basics of MongoDB
introduction to NOSQL Database
Oracle Enterprise Manager Cloud Control 13c for DBAs
The Full MySQL and MariaDB Parallel Replication Tutorial
[2018] MySQL 이중화 진화기
Inside Parquet Format
Deep Dive on ClickHouse Sharding and Replication-2202-09-22.pdf
ProxySQL High Avalability and Configuration Management Overview
Cassandra Database
Ad

Viewers also liked (12)

PPT
Everything You Need to Know About Sharding
PPTX
Webinar: Scaling MongoDB
PPTX
Basic Replication in MongoDB
PDF
MongoDB Database Replication
PDF
Webinar: Schema Patterns and Your Storage Engine
PPTX
Beyond the Basics 2: Aggregation Framework
PDF
Database Sharding at Netlog
KEY
Mongodb sharding
KEY
Sharding with MongoDB (Eliot Horowitz)
PPTX
MongoDB San Francisco 2013: Basic Sharding in MongoDB presented by Brandon Bl...
PPTX
Introduction to Sharding with MongoDB
PDF
Advanced Schema Design Patterns
Everything You Need to Know About Sharding
Webinar: Scaling MongoDB
Basic Replication in MongoDB
MongoDB Database Replication
Webinar: Schema Patterns and Your Storage Engine
Beyond the Basics 2: Aggregation Framework
Database Sharding at Netlog
Mongodb sharding
Sharding with MongoDB (Eliot Horowitz)
MongoDB San Francisco 2013: Basic Sharding in MongoDB presented by Brandon Bl...
Introduction to Sharding with MongoDB
Advanced Schema Design Patterns
Ad

Similar to Sharding Methods for MongoDB (20)

PPTX
Sharding Methods for MongoDB
PPTX
Agility and Scalability with MongoDB
PPTX
MongoDB for Time Series Data: Sharding
PDF
Building a Large Scale SEO/SEM Application with Apache Solr: Presented by Rah...
PPTX
Capacity Planning
PPTX
Building a Large Scale SEO/SEM Application with Apache Solr
PDF
TiDB vs Aurora.pdf
PDF
Managing your Black Friday Logs - Antonio Bonuccelli - Codemotion Rome 2018
PPTX
MongoDB for Time Series Data Part 3: Sharding
PPTX
Scaling MongoDB
PPTX
Introduction to Sharding
PPTX
Sizing MongoDB Clusters
PPTX
MongoDB Best Practices
PPTX
Webinar: Best Practices for Getting Started with MongoDB
PPTX
SolrCloud in Public Cloud: Scaling Compute Independently from Storage - Ilan ...
PDF
Scaling HDFS to Manage Billions of Files
PDF
Scaling HDFS to Manage Billions of Files with Key-Value Stores
PPTX
Why databases cry at night
PPT
MongoDB Knowledge Shareing
PPTX
MongoDB at Scale
Sharding Methods for MongoDB
Agility and Scalability with MongoDB
MongoDB for Time Series Data: Sharding
Building a Large Scale SEO/SEM Application with Apache Solr: Presented by Rah...
Capacity Planning
Building a Large Scale SEO/SEM Application with Apache Solr
TiDB vs Aurora.pdf
Managing your Black Friday Logs - Antonio Bonuccelli - Codemotion Rome 2018
MongoDB for Time Series Data Part 3: Sharding
Scaling MongoDB
Introduction to Sharding
Sizing MongoDB Clusters
MongoDB Best Practices
Webinar: Best Practices for Getting Started with MongoDB
SolrCloud in Public Cloud: Scaling Compute Independently from Storage - Ilan ...
Scaling HDFS to Manage Billions of Files
Scaling HDFS to Manage Billions of Files with Key-Value Stores
Why databases cry at night
MongoDB Knowledge Shareing
MongoDB at Scale

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
Unlocking AI with Model Context Protocol (MCP)
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
KodekX | Application Modernization Development
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Advanced Soft Computing BINUS July 2025.pdf
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Modernizing your data center with Dell and AMD
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
Cloud computing and distributed systems.
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Big Data Technologies - Introduction.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
cuic standard and advanced reporting.pdf
PDF
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
Unlocking AI with Model Context Protocol (MCP)
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
Per capita expenditure prediction using model stacking based on satellite ima...
KodekX | Application Modernization Development
20250228 LYD VKU AI Blended-Learning.pptx
Advanced Soft Computing BINUS July 2025.pdf
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Modernizing your data center with Dell and AMD
NewMind AI Weekly Chronicles - August'25 Week I
Cloud computing and distributed systems.
Dropbox Q2 2025 Financial Results & Investor Presentation
“AI and Expert System Decision Support & Business Intelligence Systems”
Big Data Technologies - Introduction.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
Network Security Unit 5.pdf for BCA BBA.
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
cuic standard and advanced reporting.pdf
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf

Sharding Methods for MongoDB

  • 1. Sharding Methods For MongoDB Jay Runkel jay.runkel@mongodb.com @jayrunkel #MongoDB
  • 2. 2 • Customer Stories • Sharding for Performance/Scale – When to shard? – How many shards do I need? • Types of Sharding • How to Pick a Shard Key • Sharding for Other Reasons Agenda
  • 4. 4
  • 5. 5 • 50M users. • 6B check-ins to date (6M per day growth). • 55M points of interest / venues. • 1.7M merchants using the platform for marketing • Operations Per Second: 300,000 • Documents: 5.5B Foursquare
  • 6. 6 • 11 MongoDB clusters – 8 are sharded • Largest cluster has 15 shards (check ins) – Sharded on user id Foursquare clusters
  • 7. 7 • Large data set CarFax
  • 8. 8 • 13 billion+ documents – 1.5 billion documents added every year • 1 vehicle history report is > 200 documents • 12 Shards • 9-node replica sets • Replicas distributed across 3 data centers CarFax Shards
  • 9. 9
  • 11. 12 Sharding Overview Primary Secondary Secondary Shard 1 Primary Secondary Secondary Shard 2 Primary Secondary Secondary Shard 3 Primary Secondary Secondary Shard N … Query Router Query Router Query Router …… Driver Application
  • 13. 15 Scaling: Sharding Read/Write Scalability mongod mongod Key Range 0..50 Key Range 51..100
  • 14. 16 Scaling: Sharding mongod mongod mongod mongod Key Range 0..25 Key Range 26..50 Key Range 51..75 Key Range 76.. 100 Read/Write Scalability
  • 15. How do I know I need to shard?
  • 16. 18 Does one server/replica… • Have enough disk space to store all my data? • Handle my query throughput (operations per second)? • Respond to queries fast enough (latency)?
  • 17. 19 • Have enough disk space to store all my data? • Handle my query throughput (operations per second)? • Respond to queries fast enough (latency)? Does one server/replica set… Server Specs Disk Capacity Disk IOPS RAM Network Disk IOPS RAM Network
  • 18. How many shards do I need?
  • 19. 21 • Sum of disk space across shards > greater than required storage size Disk Space: How Many Shards Do I Need?
  • 20. 22 • Sum of disk space across shards > greater than required storage size Disk Space: How Many Shards Do I Need? Example Storage size = 3 TB Server disk capacity = 2 TB 2 Shards Required
  • 21. 23 • Working set should fit in RAM – Sum of RAM across shards > Working Set • WorkSet = Indexes plus the set of documents accessed frequently • WorkSet in RAM  – Shorter latency – Higher Throughput RAM: How Many Shards Do I Need?
  • 22. 24 • Measuring Index Size and Working Set db.stats() – index size of each collection db.serverStatus({ workingSet: 1}) – working set size estimate RAM: How Many Shards Do I Need?
  • 23. 25 • Measuring Index Size and Working Set db.stats() – index size of each collection db.serverStatus({ workingSet: 1}) – working set size estimate RAM: How Many Shards Do I Need? Example Working Set = 428 GB Server RAM = 128 GB 428/128 = 3.34 4 Shards Required
  • 24. 26 • Sum of IOPS across shards > greater than required IOPS • IOPS are difficult to estimate – Update doc – Update indexes – Append to journal – Log entry? • Best approach – build a prototype and measure Disk Throughput: How Many Shards Do I Need
  • 25. 27 • Sum of IOPS across shards > greater than required IOPS • IOPS are difficult to estimate – Update doc – Update indexes – Append to journal – Log entry? • Best approach – build a prototype and measure Disk Throughput: How Many Shards Do I Need Example Required IOPS = 11000 Server disk IOPS = 5000 3 Shards Required
  • 26. 28 • S = ops/sec of a single server • G = required ops/sec • N = # of shards • G = N * S * .7 N = G/.7S OPS: How Many Shards Do I Need?
  • 27. 29 • S = ops/sec of a single server • G = required ops/sec • N = # of shards • G = N * S * .7 N = G/.7S OPS: How Many Shards Do I Need? Sharding Overhead
  • 28. 30 • S = ops/sec of a single server • G = required ops/sec • N = # of shards • G = N * S * .7 N = G/.7S OPS: How Many Shards Do I Need? Example S = 4000 G = 10000 N = 3.57 4 Shards
  • 30. 32 • Range • Tag-Aware • Hashed Sharding Types
  • 31. 33 Range Sharding mongod mongod mongod mongod Key Range 0..25 Key Range 26..50 Key Range 51..75 Key Range 76.. 100 Read/Write Scalability
  • 32. 34 Tag-Aware Sharding mongod mongod mongod mongod Shard Tags Shard Tag Start End Winter 23 Dec 21 Mar Spring 22 Mar 21 Jun Summer 21 Jun 23 Sep Fall 24 Sep 22 Dec Tag Ranges Winter Spring Summer Fall
  • 33. 35 Hash-Sharding mongod mongod mongod mongod Hash Range 0000..4444 Hash Range 4445..8000 Hash Range i8001..aaaa Hash Range aaab..ffff
  • 34. 36 Hashed shard key • Pros: – Evenly distributed writes • Cons: – Random data (and index) updates can be IO intensive – Range-based queries turn into scatter gather Shard 1 mongos Shard 2 Shard 3 Shard N
  • 37. How do I Pick A Shard Key
  • 38. 40 Shard Key characteristics • A good shard key has: – sufficient cardinality – distributed writes – targeted reads ("query isolation") • Shard key should be in every query if possible – scatter gather otherwise • Choosing a good shard key is important! – affects performance and scalability – changing it later is expensive
  • 39. 41 Low cardinality shard key • Induces "jumbo chunks" • Examples: boolean field Shard 1 mongos Shard 2 Shard 3 Shard N [ a, b )
  • 40. 42 Ascending shard key • Monotonically increasing shard key values cause "hot spots" on inserts • Examples: timestamps, _id Shard 1 mongos Shard 2 Shard 3 Shard N [ ISODate(…), $maxKe
  • 42. 44 • Scale – Data volume – Query volume • Global deployment with local writes – Geography aware sharding • Tiered Storage • Fast backup restore Reasons to shard
  • 44. 46 • Save hardware costs • Put frequently accessed documents on fast servers – Infrequently accessed documents on less capable servers • Use Tag aware sharding Tiered Storage mongod mongod mongod mongod Current Current Archive Archive SSD SSD HDD HDD
  • 45. 47 • 40 TB Database • 2 shards of 20 TB each • Challenge – Cannot meet restore SLA after data loss Fast Restore mongod mongod 20 TB 20 TB
  • 46. 48 • 40 TB Database • 4 shards of 10 TB each • Solution – Reduce the restore time by 50% Fast Restore mongod mongod 10 TB 10 TB mongod mongod 10 TB 10 TB
  • 48. 50 • To determine required # of shards determine – Storage requirements – Latency requirements – Throughput requirements • Derive total – Disk capacity – Disk throughput – RAM • Calculate # of shards based upon individual server specs Determining the # of shards
  • 49. 51 • Scalability • Geo-aware clusters • Tiered Storage • Reduce backup restore times Leverage Sharding For
  • 50. 52 • MongoDB Manual: http://docs.mongodb.org/manual/sharding/ • Other Webinars: – How to Achieve Scale With MongoDB • White Papers – MongoDB Performance Best Practices – MongoDB Architecture Guide Sharding: Where to go from here…
  • 51. Get Expert Advice on Scaling. For Free. For a limited time, if you’re considering a commercial relationship with MongoDB, you can sign up for a free one hour consult about scaling with one of our MongoDB Engineers. Sign Up: http://bit.ly/1rkXcfN
  • 52. 54 Webinar Q&A jay.runkel@mongodb.com @jayrunkel Stay tuned after the webinar and take our survey for your chance to win MongoDB swag.

Editor's Notes

  • #14: MongoDB provides horizontal scale-out for databases using a technique called sharding, which is trans- parent to applications. Sharding distributes data across multiple physical partitions called shards. Sharding allows MongoDB deployments to address the hardware limitations of a single server, such as bottlenecks in RAM or disk I/O, without adding complexity to the application. MongoDB supports three types of sharding: • Range-based Sharding. Documents are partitioned across shards according to the shard key value. Documents with shard key values “close” to one another are likely to be co-located on the same shard. This approach is well suited for applications that need to optimize range- based queries. • Hash-based Sharding. Documents are uniformly distributed according to an MD5 hash of the shard key value. Documents with shard key values “close” to one another are unlikely to be co-located on the same shard. This approach guarantees a uniform distribution of writes across shards, but is less optimal for range-based queries. • Tag-aware Sharding. Documents are partitioned according to a user-specified configuration that associates shard key ranges with shards. Users can optimize the physical location of documents for application requirements such as locating data in specific data centers. MongoDB automatically balances the data in the cluster as the data grows or the size of the cluster increases or decreases.
  • #42: may consider hashing _id instead
  • #43: may consider hashing _id instead
  • #54: www.mongodb.com/lp/contact/scaling-101 http://www.mongodb.com/lp/contact/planning-for-scale