SlideShare ist ein Scribd-Unternehmen logo
1 von 51
Downloaden Sie, um offline zu lesen
The Hows and Whys of
MongoDB
27 May 2014
Everything is at:	

http://bitly.com/bundles/rockncoder/2
Who am I?
Hi, I am Troy. I have fun as a full stack programmer. I
develop using ASP.NET MVC or Node.js on the backend
and the web or mobile up front. 	

!
I can be reached at: rockncoder@gmail.com
Free mobile tutorials with source
code @ therockncoder.blogspot.com
Want more? Follow me, new tutorials are
announced on Twitter first:
@therockncoder
Source code for my tutorials hosted on
GitHub @
https://github.com/Rockncoder
Check out my videos:
www.youtube.com/rockncoder
MongoDB 9 to 5
• Two day intensive training	

• July 19th & 26th	

• 9 AM - 5 PM	

• ITT Technical Institute,Torrance, CA
Agenda
• Introduction to
MongoDB	

• The MongoDB Shell	

• Using MongoDB	

• Advanced MongoDB	

• MongoDB Tools	

• To MongoDB or not to
MongoDB	

• Summary	

• Questions
Introduction to
MongoDB
What is MongoDB?
• Cross-platform document database	

• Developed by MongoDB Inc in 2007	

• Production ready since March 2010	

• Free and open-source	

• The most popular NoSQL database
Top DB-Engines
• Oracle	

• MySQL	

• MS SQL Server	

• PostgreSQL	

• MongoDB
!
• DB2	

• MS Access	

• SQLite	

• Cassandra	

• Sybase ASE
Who Uses It?
• Craigslist	

• eBay	

• Foursquare	

• SourceForge	

• Viacom	

• Expedia	

• Parse	

• LinkedIn	

• Medtronic	

• eHarmony	

• CERN	

• and more
Why?
• Document Database	

• High Performance	

• High Availability	

• Easy Scalability
What is a Document?
• An ordered set of keys and values	

• like JavaScript objects	

• no duplicate keys allowed	

• type and case sensitive	

• field order is not important or guaranteed
What’s Wrong with
SQL?
• SQL was created by Edgar F. Codd in 1969	

• OracleV2 introduced in 1979	

• MS SQL Server introduced in 1989	

• Today most languages are object-oriented	

• SQL is column and row oriented
A Contact Manager
• first name	

• last name	

• home address	

• work address	

• mobile phone	

• home phone
In SQL
• Person table	

• Address table	

• Phone number table	

• Joins necessary to retrieve
In MongoDB
• One document holds it all	

• Including the arrays	

• No joins necessary
SQL MongoDB
row document
table collection
database database
joins none
transactions none
Installation
• The current version is 2.6.1	

• Downloads available for Windows, Linux,
Mac OSX, and Solaris	

• 64-bit for all systems, 32-bit for Windows &
Linux	

• 32-bit is not recommends except for
learning
Windows
• Download MongoDB	

• Unzip the file	

• Move it, if necessary	

• Set up the MongoDB environment	

• Start MongoDB	

• Connect to MongoDB
Mac OS X
• The best way is to use Homebrew	

• brew update	

• brew install mongo
The MongoDB Shell
The MongoDB Shell
• Allows interactions with a MongoDB
instance	

• A full-featured JavaScript interpreter	

• Allows multiple line input
Shell Helpers
• use foo - db.getSisterDB(“foo”)	

• show dbs - db.getMongo().getDBs()	

• show collections -
db.getCollectionNames()
CRUD in the Shell
• Create = insert	

• Read = find/findOne	

• Update = update	

• Delete = remove
BSON not JSON
• MongoDB uses its own variant of JSON	

• Called Binary JSON or BSON	

• Efficiency	

• Traversability	

• Performance
Using MongoDB
MongoDB in Node.js
MongoDB in Android
MongoDB in C#
Misunderstandings
• It is schema-less 	

• You don’t need to design db	

• You should mix types
Advanced MongoDB
Performance
• Indexing	

• Query Optimization	

• Profiler
Indexing
• Indexes should support queries	

• Use indexes to sort queries	

• Indexes should fit into RAM	

• Queries should ensure selectivity
Query Optimization
• Improves read operations by reducing data
that the query needs to process
Profiler
• Collects data about MongoDB database
commands	

• Enabled per-database or per-instance basis	

• Profile level is configurable (0, 1, or 2)
Stats
• db.stats()	

• Statistics that reflect the use of a single DB	

• Identifies:	

• the current database	

• the number of indexes	

• the file size
Replication
• Keeps identical copies of data on multiple
servers	

• Set up by creating a replica set	

• A replica set is a group of servers with one
primary	

• If primary crash, secondaries elect a new
one
Backup
• mongodump - command line tool	

• You must have backup and read privileges	

• No arguments connects to the local DB	

• —db, limits the database	

• —collection, limits the collections	

• —oplog, makes snapshots possible
Restore
• mongorestore --port <port number>
<path to the backup>	

• Can restore to a running instance or to the
files	

• —oplogReplay, 	

• —filter, allows restore only if filter is true
Sharding
• Process of splitting data up across machines	

• Manual sharding can be with most database	

• MongoDB has autosharding 	

• Nonetheless it is difficult to configure
MongoDB Tools
Tools
• MongoDB Shell (built-in)	

• MongoDB Web Site (built-in)	

• Robomongo (Mac, PC, Linux)	

• http://mongodb-tools.com/
To MongoDB or not to
MongoDB
Not to MongoDB
• Transactions are needed	

• You are happy with what you have	

• You have have
To MongoDB
• You do a lot of non-transactional writes	

• You need to grow wide	

• You work with location based data	

• You need high availability
MongoDB as a Service
• MongoHQ	

• MongoLab	

• MongoDirector	

• ObjectRocket, (Rackspace)
Summary
• MongoDB is an open-source document
database	

• It features JSON-style documents with
dynamic schemas	

• In order to gain performance, it sacrifices
reliability
Everything is at:	

http://bitly.com/bundles/rockncoder/2

Weitere ähnliche Inhalte

Mehr von Troy Miles

Mehr von Troy Miles (20)

Node Boot Camp
Node Boot CampNode Boot Camp
Node Boot Camp
 
AWS Lambda Function with Kotlin
AWS Lambda Function with KotlinAWS Lambda Function with Kotlin
AWS Lambda Function with Kotlin
 
React Native One Day
React Native One DayReact Native One Day
React Native One Day
 
React Native Evening
React Native EveningReact Native Evening
React Native Evening
 
Intro to React
Intro to ReactIntro to React
Intro to React
 
React Development with the MERN Stack
React Development with the MERN StackReact Development with the MERN Stack
React Development with the MERN Stack
 
Angular Application Testing
Angular Application TestingAngular Application Testing
Angular Application Testing
 
ReactJS.NET
ReactJS.NETReactJS.NET
ReactJS.NET
 
What is Angular version 4?
What is Angular version 4?What is Angular version 4?
What is Angular version 4?
 
Angular Weekend
Angular WeekendAngular Weekend
Angular Weekend
 
From MEAN to the MERN Stack
From MEAN to the MERN StackFrom MEAN to the MERN Stack
From MEAN to the MERN Stack
 
Functional Programming in JavaScript
Functional Programming in JavaScriptFunctional Programming in JavaScript
Functional Programming in JavaScript
 
Functional Programming in Clojure
Functional Programming in ClojureFunctional Programming in Clojure
Functional Programming in Clojure
 
MEAN Stack Warm-up
MEAN Stack Warm-upMEAN Stack Warm-up
MEAN Stack Warm-up
 
The JavaScript You Wished You Knew
The JavaScript You Wished You KnewThe JavaScript You Wished You Knew
The JavaScript You Wished You Knew
 
Game Design and Development Workshop Day 1
Game Design and Development Workshop Day 1Game Design and Development Workshop Day 1
Game Design and Development Workshop Day 1
 
Build a Game in 60 minutes
Build a Game in 60 minutesBuild a Game in 60 minutes
Build a Game in 60 minutes
 
Quick & Dirty & MEAN
Quick & Dirty & MEANQuick & Dirty & MEAN
Quick & Dirty & MEAN
 
A Quick Intro to ReactiveX
A Quick Intro to ReactiveXA Quick Intro to ReactiveX
A Quick Intro to ReactiveX
 
JavaScript Foundations Day1
JavaScript Foundations Day1JavaScript Foundations Day1
JavaScript Foundations Day1
 

Kürzlich hochgeladen

%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
shinachiaurasa2
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
masabamasaba
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
VictoriaMetrics
 

Kürzlich hochgeladen (20)

Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 

The Hows and Whys of MongoDB