SlideShare a Scribd company logo
#MongoChicago




Sharding
Chad Tindel
Solution Architect, 10gen
Agenda

• Short history of scaling data
• Why shard
• MongoDB's approach
• Architecture
• Configuration
• Mechanics
• Solutions
The story of scaling
data
Visual representation of vertical scaling




1970 - 2000: Vertical Scalability (scale
up)
Visual representation of horizontal scaling




Google, ~2000: Horizontal Scalability (scale
out)
Data Store Scalability in 2005

• Custom Hardware
  – Oracle

• Custom Software
  – Facebook + MySQL
Data Store Scalability Today

• MongoDB auto-sharding available in 2009
• A data store that is
   –   Free
   –   Publicly available
   –   Open source (https://github.com/mongodb/mongo)
   –   Horizontally scalable
   –   Application independent
Why shard?
Working Set Exceeds Physical
Memory
Read/Write Throughput Exceeds I/O
MongoDB's approach
to sharding
Partition data based on ranges

• User defines shard key
• Shard key defines range of data
• Key space is like points on a line
• Range is a segment of that line
Distribute data in chunks across
nodes
• Initially 1 chunk
• Default max chunk size: 64mb
• MongoDB automatically splits & migrates chunks
 when max reached
MongoDB manages data

• Queries routed to specific
 shards
• MongoDB balances cluster
• MongoDB migrates data to
 new nodes
MongoDB Auto-Sharding

• Minimal effort required
   – Same interface as single mongod

• Two steps
   – Enable Sharding for a database
   – Shard collection within database
Architecture
Data stored in shard
• Shard is a node of the cluster
• Shard can be a single mongod or a replica set
Config server stores meta data

• Config Server
   – Stores cluster chunk ranges and locations
   – Can have only 1 or 3 (production must have 3)
   – Two phase commit (not a replica set)
MongoS manages the data

• Mongos
   – Acts as a router / balancer
   – No local data (persists to config database)
   – Can have 1 or many
Sharding infrastructure
Configuration
Example cluster setup




• Don’t use this setup in production!
   - Only one Config server (No Fault Tolerance)
   - Shard not in a replica set (Low Availability)
   - Only one Mongos and shard (No Performance Improvement)
   - Useful for development or demonstrating configuration mechanics
Start the config server




• “mongod --configsvr”
• Starts a config server on the default port (27019)
Start the mongos router




• “mongos --configdb <hostname>:27019”
• For 3 config servers: “mongos --configdb
  <host1>:<port1>,<host2>:<port2>,<host3>:<port3>”
• This is always how to start a new mongos, even if the cluster
  is already running
Start the shard database




•   “mongod --shardsvr”
•   Starts a mongod with the default shard port (27018)
•   Shard is not yet connected to the rest of the cluster
•   Shard may have already been running in production
Add the shard




• On mongos: “sh.addShard(„<host>:27018‟)”
• Adding a replica set: “sh.addShard(„<rsname>/<seedlist>‟)
• In 2.2 and later can use sh.addShard(„<host>:<port>‟)
Verify that the shard was added




• db.runCommand({ listshards:1 })
• { "shards" :
      [ { "_id”: "shard0000”, "host”: ”<hostname>:27018” } ],
       "ok" : 1
  }
Enabling Sharding

• Enable sharding on a database
   – sh.enableSharding(“<dbname>”)

• Shard a collection with the given key
   – sh.shardCollection(“<dbname>.people”,{“country”:1})

• Use a compound shard key to prevent
 duplicates
   – sh.shardCollection(“<dbname>.cars”,{“year”:1,
     ”uniqueid”:1})
Mechanics
Partitioning

• Remember it's based on ranges
Chunk is a section of the entire range
Chunk splitting




• A chunk is split once it exceeds the maximum size
• There is no split point if all documents have the same shard
  key
• Chunk split is a logical operation (no data is moved)
• If split creates too large of a discrepancy of chunk count across
  cluster a balancing round starts
Balancing




• Balancer is running on mongos
• Once the difference in chunks between the most dense shard
 and the least dense shard is above the migration threshold, a
 balancing round starts
Acquiring the Balancer Lock




• The balancer on mongos takes out a “balancer lock”
• To see the status of these locks:
   - use config
   - db.locks.find({ _id: “balancer” })
Moving the chunk




• The mongos sends a “moveChunk” command to source
  shard
• The source shard then notifies destination shard
• The destination claims the chunk shard-key range
• Destination shard starts pulling documents from source shard
Committing Migration




• When complete, destination shard updates config server
  - Provides new locations of the chunks
Cleanup




• Source shard deletes moved data
   - Must wait for open cursors to either close or time out
   - NoTimeout cursors may prevent the release of the lock
• Mongos releases the balancer lock after old chunks are
  deleted
Routing Requests
Cluster Request Routing

• Targeted Queries
• Scatter Gather Queries
• Scatter Gather Queries with Sort
Cluster Request Routing: Targeted
Query
Routable request received
Request routed to appropriate shard
Shard returns results
Mongos returns results to client
Cluster Request Routing: Non-Targeted
Query
Non-Targeted Request Received
Request sent to all shards
Shards return results to mongos
Mongos returns results to client
Cluster Request Routing: Non-Targeted
Query with Sort
Non-Targeted request with sort
received
Request sent to all shards
Query and sort performed locally
Shards return results to mongos
Mongos merges sorted results
Mongos returns results to client
Shard Key
Shard Key

• Choose a field common used in queries
• Shard key is immutable
• Shard key values are immutable
• Shard key requires index on fields contained in
 key
• Uniqueness of `_id` field is only guaranteed
 within individual shard
• Shard key limited to 512 bytes in size
#MongoChicago




Thank You
Chad Tindel
Solution Architect, 10gen

More Related Content

PDF
MyRocks Deep Dive
PDF
The Top 5 Reasons to Deploy Your Applications on Oracle RAC
PDF
Backup and recovery in oracle
PDF
Transparent Data Encryption in PostgreSQL and Integration with Key Management...
PDF
Partitioning tables and indexing them
PDF
IO Resource Management on Exadata
PDF
MongodB Internals
PPTX
MongoDB presentation
MyRocks Deep Dive
The Top 5 Reasons to Deploy Your Applications on Oracle RAC
Backup and recovery in oracle
Transparent Data Encryption in PostgreSQL and Integration with Key Management...
Partitioning tables and indexing them
IO Resource Management on Exadata
MongodB Internals
MongoDB presentation

What's hot (20)

PDF
Log Structured Merge Tree
PDF
Improve speed and performance of informix 11.xx part 2
PDF
Tanel Poder - Troubleshooting Complex Oracle Performance Issues - Part 2
DOC
Analyzing awr report
PPTX
Mongo DB Presentation
PDF
Oracle Performance Tuning Fundamentals
PPT
virtual machine.ppt
PDF
Oracle Database Performance Tuning Advanced Features and Best Practices for DBAs
PDF
An introduction to MongoDB
PPTX
Indexing with MongoDB
PPT
Ash masters : advanced ash analytics on Oracle
PDF
Awr + 12c performance tuning
PDF
RocksDB Performance and Reliability Practices
PDF
Linux tuning to improve PostgreSQL performance
PDF
The InnoDB Storage Engine for MySQL
PPTX
From cache to in-memory data grid. Introduction to Hazelcast.
PDF
Oracle_Multitenant_19c_-_All_About_Pluggable_D.pdf
PDF
MySQL/MariaDB Proxy Software Test
PDF
Secure Session Management
PPTX
Introducing MongoDB Atlas
Log Structured Merge Tree
Improve speed and performance of informix 11.xx part 2
Tanel Poder - Troubleshooting Complex Oracle Performance Issues - Part 2
Analyzing awr report
Mongo DB Presentation
Oracle Performance Tuning Fundamentals
virtual machine.ppt
Oracle Database Performance Tuning Advanced Features and Best Practices for DBAs
An introduction to MongoDB
Indexing with MongoDB
Ash masters : advanced ash analytics on Oracle
Awr + 12c performance tuning
RocksDB Performance and Reliability Practices
Linux tuning to improve PostgreSQL performance
The InnoDB Storage Engine for MySQL
From cache to in-memory data grid. Introduction to Hazelcast.
Oracle_Multitenant_19c_-_All_About_Pluggable_D.pdf
MySQL/MariaDB Proxy Software Test
Secure Session Management
Introducing MongoDB Atlas
Ad

Viewers also liked (20)

KEY
Mongoose v3 :: The Future is Bright
PPTX
MongoDB's New Aggregation framework
KEY
MongoFr : MongoDB as a log Collector
PPT
MongoDB Basic Concepts
PPTX
Scalable Event Analytics with MongoDB & Ruby on Rails
PPT
Mongo Web Apps: OSCON 2011
PDF
Grid FS
PDF
FIFA 온라인 3의 MongoDB 사용기
PPTX
Sharding Methods for MongoDB
PPTX
mongodb와 mysql의 CRUD 연산의 성능 비교
PPTX
Mongo DB 성능최적화 전략
PPTX
Basic Replication in MongoDB
PPTX
MongoDB World 2015 - A Technical Introduction to WiredTiger
PDF
Building a Single-Page App: Backbone, Node.js, and Beyond
PDF
NoSQL 간단한 소개
KEY
Single Page Web Applications with CoffeeScript, Backbone and Jasmine
PPTX
Back to Basics 2017: Introduction to Sharding
PDF
Webinar: Working with Graph Data in MongoDB
PPTX
Seminario Web MongoDB-Paradigma: Cree aplicaciones más escalables utilizando ...
PDF
Практическое применение MongoDB Aggregation Framework
Mongoose v3 :: The Future is Bright
MongoDB's New Aggregation framework
MongoFr : MongoDB as a log Collector
MongoDB Basic Concepts
Scalable Event Analytics with MongoDB & Ruby on Rails
Mongo Web Apps: OSCON 2011
Grid FS
FIFA 온라인 3의 MongoDB 사용기
Sharding Methods for MongoDB
mongodb와 mysql의 CRUD 연산의 성능 비교
Mongo DB 성능최적화 전략
Basic Replication in MongoDB
MongoDB World 2015 - A Technical Introduction to WiredTiger
Building a Single-Page App: Backbone, Node.js, and Beyond
NoSQL 간단한 소개
Single Page Web Applications with CoffeeScript, Backbone and Jasmine
Back to Basics 2017: Introduction to Sharding
Webinar: Working with Graph Data in MongoDB
Seminario Web MongoDB-Paradigma: Cree aplicaciones más escalables utilizando ...
Практическое применение MongoDB Aggregation Framework
Ad

Similar to Sharding (20)

PPTX
Sharding - Seoul 2012
PDF
Sharding
PPTX
Basic Sharding in MongoDB presented by Shaun Verch
PPTX
Sharding
PPTX
Introduction to Sharding
PPTX
MongoDB San Francisco 2013: Basic Sharding in MongoDB presented by Brandon Bl...
PPTX
Webinar: Sharding
PPTX
Introduction to Sharding
PPTX
Sharding Overview
PPTX
2014 05-07-fr - add dev series - session 6 - deploying your application-2
PPTX
Back to Basics: Build Something Big With MongoDB
PPTX
Webinar: Serie Operazioni per la vostra applicazione - Sessione 6 - Installar...
PPTX
Back tobasicswebinar part6-rev.
PPTX
MongoDB Sharding
PDF
Шардинг в MongoDB, Henrik Ingo (MongoDB)
KEY
Mongodb sharding
PPTX
MongoDB : Scaling, Security & Performance
PPT
Mongo db roma replication and sharding
PPT
MongoDB Pros and Cons
PPTX
Agility and Scalability with MongoDB
Sharding - Seoul 2012
Sharding
Basic Sharding in MongoDB presented by Shaun Verch
Sharding
Introduction to Sharding
MongoDB San Francisco 2013: Basic Sharding in MongoDB presented by Brandon Bl...
Webinar: Sharding
Introduction to Sharding
Sharding Overview
2014 05-07-fr - add dev series - session 6 - deploying your application-2
Back to Basics: Build Something Big With MongoDB
Webinar: Serie Operazioni per la vostra applicazione - Sessione 6 - Installar...
Back tobasicswebinar part6-rev.
MongoDB Sharding
Шардинг в MongoDB, Henrik Ingo (MongoDB)
Mongodb sharding
MongoDB : Scaling, Security & Performance
Mongo db roma replication and sharding
MongoDB Pros and Cons
Agility and Scalability with MongoDB

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...

Sharding

Editor's Notes

  • #4: Ops will be most interested in ConfigurationDev will be most interested in Mechanics
  • #6: From mainframes, to RAC Oracle servers.. People solved problems by adding more resources to a single machine.
  • #7: Google was the first to demonstrate that a large scale operation could be had with high performance on commodity hardwareBuild - Document oriented database maps perfectly to object oriented languagesScale - MongoDB presents clear path to scalability that isn&apos;t ops intensive - Provides same interface for sharded cluster as single instance
  • #8: In 2005, two ways to achieve datastore scalability:Lots of money to purchase custom hardwareLots of money to develop custom software
  • #11: Indexes should be contained in working set.
  • #17: The solution to the preceding problemsAdd graphic??
  • #22: Add arrows for or mention that there is communication between shards (migrations)
  • #28: MongoDB 2.2 and later only need &lt;host&gt; and &lt;port&gt; for one member of the replica set
  • #31: Really out of place. Can&apos;t do it justice in 1 slide and not enough time to do more.
  • #33: Quick review from earlier.
  • #35: Once chunk size is reached, mongos asks mongod to split a chunk + internal function called splitVector()mongod counts number of documents on each side of split + based on avg. document size `db.stats()`Chunk split is a **logical** operation (no data has moved)Max on first chunk should be 14
  • #37: Balancer lock actually held on config server.
  • #38: Moved chunk on shard2 should be gray
  • #39: How do the other mongoses know that their configuration is out of date? When does the chunk version on the shard itself get updated?
  • #58: The mongos does not have to load the whole set into memory since each shard sorts locally. The mongos can just getMore from the shards as needed and incrementally return the results to the client.
  • #61: _id could be unique across shards if used as shard key.we could only guarantee uniqueness of (any) attributes if the keys are used as shard keys with unique attribute equals true
  • #63: Need to rework this section. It adds nothing.
  • #64: Use this slide to talk about clients that have had this problem and worked around it by sharding.
  • #65: Use this slide to talk about clients that have had this problem and worked around it by sharding.