SlideShare a Scribd company logo
Back to Basics 2017 - Introduction to NoSQL
Back to Basics 2017 : Webinar 1
Introduction to NoSQL
Joe Drumgoole
Director of Developer Advocacy, EMEA
MongoDB
@jdrumgoole
V1.3
Welcome!
4
Course Agenda
Date Time Webinar
19-Jan-2017 15:00 GMT Introduction to NoSQL
26-Jan-2017 15:00 GMT Your First MongoDB Application
02-Feb-2017 11:00 GMT Introduction to Replica Sets
09-Feb-2017 11:00 GMT Introduction to Sharding
5
Agenda for Today
• Why NoSQL
• The different types of NoSQL database
• Detailed overview of MongoDB
• Q&A
6
Relational
Expressive Query Language
& Secondary Indexes
Strong Consistency
Enterprise Management
& Integrations
7
The World Has Changed
Data Risk Time Cost
8
NoSQL
Scalability
& Performance
Always On,
Global Deployments
FlexibilityExpressive Query Language
& Secondary Indexes
Strong Consistency
Enterprise Management
& Integrations
9
Nexus Architecture
Scalability
& Performance
Always On,
Global Deployments
FlexibilityExpressive Query Language
& Secondary Indexes
Strong Consistency
Enterprise Management
& Integrations
10
Types of NoSQL Database
• Key/Value Stores
• Column Stores
• Graph Stores
• Multi-model Databases
• Document Stores
11
Key Value Stores
• An associative array
• Single key lookup
• Very fast single key lookup
• Not so hot for “reverse lookups”
Key Value
12345 4567.3456787
12346 { addr1 : “The Grange”, addr2: “Dublin” }
12347 “top secret password”
12358 “Shopping basket value : 24560”
12787 12345
12
Revision : Row Stores (RDBMS)
• Store data aligned by rows (traditional RDBMS, e.g MySQL)
• Reads retrieve a complete row everytime
• Reads requiring only one or two columns are wasteful
ID Name Salary Start Date
1 Joe D $24000 1/Jun/1970
2 Peter J $28000 1/Feb/1972
3 Phil G $23000 1/Jan/1973
1 Joe D $24000 1/Jun/1970 2 Peter J $28000 1/Feb/1972 3 Phil G $23000 1/Jan/1973
13
How a Column Store Does it
1 2 3
ID Name Salary Start Date
1 Joe D $24000 1/Jun/1970
2 Peter J $28000 1/Feb/1972
3 Phil G $23000 1/Jan/1973
Joe D Peter J Phil G $24000 $28000 $23000 1/Jun/1970 1/Feb/1972 1/Jan/1973
14
Why is this Attractive?
• A series of consecutive seeks can retrieve a column efficiently
• Compressing similar data is super efficient
• How do I align my rows? By order or by inserting a row ID
• IF you just need a small number of columns you don’t need to
read all the rows
• But:
– Updating and deleting by row is expensive
• Append only is preferred
• Better for OLAP than OLTP
15
Graph Stores
• Store graphs (edges and vertexes)
• E.g. social networks
• Designed to allow efficient traversal
• Optimised for representing connections
• Can be implemented as a key value stored with the ability to store
links
• MongoDB 3.4 supports graph queries
16
Multi-Model Databases
• Combine multiple storage/access models
• Often Graph plus “something else”
• Fixes the “polyglot persistence” issue of keeping multiple
independent databases consistent
• The “new new thing” in NoSQL Land
• MongoDB is a "multi-modal" document store
– Graph
– Geo-Spatial
– B-tree
– Full Text
17
Document Store
• Not PDFs, Microsoft Word or HTML
• Documents are nested structures created using Javascript Object Notation (JSON)
{
name : “Joe Drumgoole”,
title : “Director of Developer Advocacy”,
Address : {
address1 : “Latin Hall”,
address2 : “Golden Lane”,
eircode : “D09 N623”,
}
expertise: [ “MongoDB”, “Python”, “Javascript” ],
employee_number : 320,
location : [ 53.34, -6.26 ]
}
18
MongoDB Documents are Typed
{
name : “Joe Drumgoole”,
title : “Director of Developer Advocacy”,
Address : {
address1 : “Latin Hall”,
address2 : “Golden Lane”,
eircode : “D09 N623”,
}
expertise: [ “MongoDB”, “Python”, “Javascript” ],
employee_number : 320,
location : [ 53.34, -6.26 ]
}
Strings
Nested Document
Array
Integer
Geo-spatial Coordinates
19
MongoDB Understands JSON Documents
• From the very first version it was a native JSON database
• Understands and can index the sub-structures
• Stores JSON as a binary format called BSON
• Efficient for encoding and decoding for network transmission
• MongoDB can create indexes on any document field
• (We will cover these areas in detail later on in the course)
20
Why Documents?
• Dynamic Schema
• Elimination of Object/Relational Mapping Layer
• Implicit denormalisation of the data for performance
21
Why Documents?
• Dynamic Schema
• Elimination of Object/Relational Mapping Layer
• Implicit denormalisation of the data for performance
22
Aggregation Framework
23
Pipeline Operators
• $match
Filter documents
• $project
Reshape documents
• $group
Summarize documents
• $out
Create new collections
• $sort
Order documents
• $limit/$skip
Paginate documents
• $lookup
Join two collections together
• $unwind
Expand an array
24
Instant Start with Compass and Atlas
Compass
Atlas
25
Next Webinar – Your First MongoDB Application
• 26th Jan 2017 – 15:00 GMT.
• Learn how to build your first MongoDB application
– Create databases and collections
– Look at queries
– Build indexes
– Start to understand performance
• Register at https://www.mongodb.com/webinar/back-to-basics-
webinar-series
• Send feedback to back-to-basics@mongodb.com
26
What's Next?
• Sign up for an online course: https://university.mongodb.com/
• Join a MUG: https://www.meetup.com/pro/mongodb/
Q&A
Back to Basics 2017 - Introduction to NoSQL

More Related Content

What's hot (20)

KEY
Redis
Ramon Wartala
 
PPTX
An Introduction to Big Data, NoSQL and MongoDB
William LaForest
 
PDF
Steam Learn: An introduction to Redis
inovia
 
PPT
Introduction to mongodb
neela madheswari
 
ODP
Introduction to MongoDB
Dineesha Suraweera
 
PPTX
Introduction To MongoDB
Yubraj Ghimire
 
PPTX
MongoDB presentation
Hyphen Call
 
PPTX
Why NoSQL and MongoDB for Big Data
William LaForest
 
PPTX
Introduction to MongoDB
Cali Mongo
 
PPTX
MongoDB_Sharan_Prakash_Babu
Sharan
 
PPTX
MongoDB introduction
Edward Yoon
 
PPT
5 Things You Didn't Know You Could do with CouchDB
Mark Headd
 
PPTX
MongoDB
nikhil2807
 
KEY
MongoDB at CodeMash 2.0.1.0
Mike Dirolf
 
PDF
Doing E-commerce Right – Magento on DigitalOcean
DigitalOcean
 
PPTX
Back to Basics German 3: Einführung ins Sharding
MongoDB
 
PPTX
Introduction to Azure DocumentDB
Radenko Zec
 
PPTX
CSCi226PPT1
Mahima Verma
 
PDF
An Introduction to MongoDB
Chamodi Adikaram
 
PPTX
Mongo DB
Er. Shiva K. Shrestha
 
An Introduction to Big Data, NoSQL and MongoDB
William LaForest
 
Steam Learn: An introduction to Redis
inovia
 
Introduction to mongodb
neela madheswari
 
Introduction to MongoDB
Dineesha Suraweera
 
Introduction To MongoDB
Yubraj Ghimire
 
MongoDB presentation
Hyphen Call
 
Why NoSQL and MongoDB for Big Data
William LaForest
 
Introduction to MongoDB
Cali Mongo
 
MongoDB_Sharan_Prakash_Babu
Sharan
 
MongoDB introduction
Edward Yoon
 
5 Things You Didn't Know You Could do with CouchDB
Mark Headd
 
MongoDB
nikhil2807
 
MongoDB at CodeMash 2.0.1.0
Mike Dirolf
 
Doing E-commerce Right – Magento on DigitalOcean
DigitalOcean
 
Back to Basics German 3: Einführung ins Sharding
MongoDB
 
Introduction to Azure DocumentDB
Radenko Zec
 
CSCi226PPT1
Mahima Verma
 
An Introduction to MongoDB
Chamodi Adikaram
 

Viewers also liked (20)

PPTX
Back to Basics 2017 - Your First MongoDB Application
Joe Drumgoole
 
KEY
The Cloud Foundry bootcamp talk from SpringOne On The Road - Europe
Joshua Long
 
PPTX
Python Ireland Conference 2016 - Python and MongoDB Workshop
Joe Drumgoole
 
PDF
Couchbase Chennai Meetup: Developing with Couchbase- made easy
Karthik Babu Sekar
 
PDF
Couchbase Singapore Meetup #2: Why Developing with Couchbase is easy !!
Karthik Babu Sekar
 
PDF
Migration and Coexistence between Relational and NoSQL Databases by Manuel H...
Big Data Spain
 
PPTX
Cloud Native Application Framework
VMware Tanzu
 
PDF
Case of success: Visualization as an example for exercising democratic transp...
Big Data Spain
 
PPTX
Offline first with Couchbase Mobile
Vegard Haugstvedt
 
PPTX
Building Reactive Applications With Akka And Java
Tu Pham
 
PPTX
Containerless in the Cloud with AWS Lambda
Ryan Cuprak
 
PDF
Understanding Kubernetes
Tu Pham
 
PDF
Docker for Java Developers
NGINX, Inc.
 
PPTX
NoSQL Architecture Overview
Christopher Foot
 
PDF
Patterns of Cloud Native Architecture
Andrew Shafer
 
PPTX
The Rise of Microservices
Joe Drumgoole
 
PPTX
Docker introduction
dotCloud
 
PDF
Stream all the things
Dean Wampler
 
PPTX
Booster 2017 - from accessibility n00b to pro in 1.5 hrs
Vegard Haugstvedt
 
PPT
Java EE and Spring Side-by-Side
Reza Rahman
 
Back to Basics 2017 - Your First MongoDB Application
Joe Drumgoole
 
The Cloud Foundry bootcamp talk from SpringOne On The Road - Europe
Joshua Long
 
Python Ireland Conference 2016 - Python and MongoDB Workshop
Joe Drumgoole
 
Couchbase Chennai Meetup: Developing with Couchbase- made easy
Karthik Babu Sekar
 
Couchbase Singapore Meetup #2: Why Developing with Couchbase is easy !!
Karthik Babu Sekar
 
Migration and Coexistence between Relational and NoSQL Databases by Manuel H...
Big Data Spain
 
Cloud Native Application Framework
VMware Tanzu
 
Case of success: Visualization as an example for exercising democratic transp...
Big Data Spain
 
Offline first with Couchbase Mobile
Vegard Haugstvedt
 
Building Reactive Applications With Akka And Java
Tu Pham
 
Containerless in the Cloud with AWS Lambda
Ryan Cuprak
 
Understanding Kubernetes
Tu Pham
 
Docker for Java Developers
NGINX, Inc.
 
NoSQL Architecture Overview
Christopher Foot
 
Patterns of Cloud Native Architecture
Andrew Shafer
 
The Rise of Microservices
Joe Drumgoole
 
Docker introduction
dotCloud
 
Stream all the things
Dean Wampler
 
Booster 2017 - from accessibility n00b to pro in 1.5 hrs
Vegard Haugstvedt
 
Java EE and Spring Side-by-Side
Reza Rahman
 
Ad

Similar to Back to Basics 2017 - Introduction to NoSQL (20)

PPTX
Back to Basics Webinar 1: Introduction to NoSQL
MongoDB
 
PPTX
Back to Basics Webinar 1 - Introduction to NoSQL
Joe Drumgoole
 
PPTX
Conceptos básicos. Seminario web 1: Introducción a NoSQL
MongoDB
 
PPTX
Introducción a NoSQL
MongoDB
 
PDF
MongoDB NoSQL database a deep dive -MyWhitePaper
Rajesh Kumar
 
PDF
Introduction to MongoDB Basics from SQL to NoSQL
Mayur Patil
 
PPTX
Mongo db
Gyanendra Yadav
 
PPTX
Nosql
ROXTAD71
 
PPTX
Nosql
Roxana Tadayon
 
PPTX
Mongodb - NoSql Database
Prashant Gupta
 
PPTX
NOSQL and MongoDB Database
Tariqul islam
 
PPTX
Mongo db
AbhiKhurana8
 
PPTX
mongodb introduction11111111111111111111
VADAPALLYPRAVEENKUMA1
 
PPTX
Intro To Mongo Db
chriskite
 
PDF
MongoDB
techwhizbang
 
PDF
Beginner's guide to Mongodb and NoSQL
Maulin Shah
 
PPTX
lecture_34e.pptx
janibashashaik25
 
PPTX
UNIT-1 MongoDB.pptx
DharaDarji5
 
PDF
Nosql part1 8th December
Ruru Chowdhury
 
PPTX
MongoDB Evenings DC: MongoDB - The New Default Database for Giant Ideas
MongoDB
 
Back to Basics Webinar 1: Introduction to NoSQL
MongoDB
 
Back to Basics Webinar 1 - Introduction to NoSQL
Joe Drumgoole
 
Conceptos básicos. Seminario web 1: Introducción a NoSQL
MongoDB
 
Introducción a NoSQL
MongoDB
 
MongoDB NoSQL database a deep dive -MyWhitePaper
Rajesh Kumar
 
Introduction to MongoDB Basics from SQL to NoSQL
Mayur Patil
 
Mongo db
Gyanendra Yadav
 
Nosql
ROXTAD71
 
Mongodb - NoSql Database
Prashant Gupta
 
NOSQL and MongoDB Database
Tariqul islam
 
Mongo db
AbhiKhurana8
 
mongodb introduction11111111111111111111
VADAPALLYPRAVEENKUMA1
 
Intro To Mongo Db
chriskite
 
MongoDB
techwhizbang
 
Beginner's guide to Mongodb and NoSQL
Maulin Shah
 
lecture_34e.pptx
janibashashaik25
 
UNIT-1 MongoDB.pptx
DharaDarji5
 
Nosql part1 8th December
Ruru Chowdhury
 
MongoDB Evenings DC: MongoDB - The New Default Database for Giant Ideas
MongoDB
 
Ad

More from Joe Drumgoole (20)

PPTX
MongoDB Schema Design
Joe Drumgoole
 
PPTX
Server discovery and monitoring with MongoDB
Joe Drumgoole
 
PPTX
Event sourcing the best ubiquitous pattern you have never heard off
Joe Drumgoole
 
PPTX
EuroPython 2016 : A Deep Dive into the Pymongo Driver
Joe Drumgoole
 
PPTX
MongoDB World 2016 : Advanced Aggregation
Joe Drumgoole
 
PPTX
Introduction to NoSQL
Joe Drumgoole
 
PPTX
Introduction to CQRS and Event Sourcing
Joe Drumgoole
 
PPTX
Back to Basics Webinar 3 - Thinking in Documents
Joe Drumgoole
 
PPTX
Back to Basics Webinar 2 - Your First MongoDB Application
Joe Drumgoole
 
PPTX
Cloud Computing - Halfway through the revolution
Joe Drumgoole
 
PPTX
Enterprise mobility for fun and profit
Joe Drumgoole
 
PPTX
How to run a company for 2k a year
Joe Drumgoole
 
PPTX
Mobile monday mhealth
Joe Drumgoole
 
PPTX
Cloudsplit original
Joe Drumgoole
 
PPTX
Harness the web and grow your business
Joe Drumgoole
 
PPTX
Internet Safety and Chldren
Joe Drumgoole
 
PPTX
The Future of IT for Accountants
Joe Drumgoole
 
PPTX
Simplifying Enterprise Mobility - Powering Mobile Apps from The Cloud
Joe Drumgoole
 
PPTX
Be A Startup Not a F**kup
Joe Drumgoole
 
PPTX
How to Run a Company for $2000 a Year
Joe Drumgoole
 
MongoDB Schema Design
Joe Drumgoole
 
Server discovery and monitoring with MongoDB
Joe Drumgoole
 
Event sourcing the best ubiquitous pattern you have never heard off
Joe Drumgoole
 
EuroPython 2016 : A Deep Dive into the Pymongo Driver
Joe Drumgoole
 
MongoDB World 2016 : Advanced Aggregation
Joe Drumgoole
 
Introduction to NoSQL
Joe Drumgoole
 
Introduction to CQRS and Event Sourcing
Joe Drumgoole
 
Back to Basics Webinar 3 - Thinking in Documents
Joe Drumgoole
 
Back to Basics Webinar 2 - Your First MongoDB Application
Joe Drumgoole
 
Cloud Computing - Halfway through the revolution
Joe Drumgoole
 
Enterprise mobility for fun and profit
Joe Drumgoole
 
How to run a company for 2k a year
Joe Drumgoole
 
Mobile monday mhealth
Joe Drumgoole
 
Cloudsplit original
Joe Drumgoole
 
Harness the web and grow your business
Joe Drumgoole
 
Internet Safety and Chldren
Joe Drumgoole
 
The Future of IT for Accountants
Joe Drumgoole
 
Simplifying Enterprise Mobility - Powering Mobile Apps from The Cloud
Joe Drumgoole
 
Be A Startup Not a F**kup
Joe Drumgoole
 
How to Run a Company for $2000 a Year
Joe Drumgoole
 

Recently uploaded (20)

PPTX
Customise Your Correlation Table in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PPTX
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
PPTX
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
PPTX
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
PDF
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
PPTX
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PDF
AOMEI Partition Assistant Crack 10.8.2 + WinPE Free Downlaod New Version 2025
bashirkhan333g
 
PDF
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
PPTX
OpenChain @ OSS NA - In From the Cold: Open Source as Part of Mainstream Soft...
Shane Coughlan
 
PPTX
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
PDF
Add Background Images to Charts in IBM SPSS Statistics Version 31.pdf
Version 1 Analytics
 
PDF
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
PDF
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PDF
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
PDF
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
PPTX
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
PDF
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
Customise Your Correlation Table in IBM SPSS Statistics.pptx
Version 1 Analytics
 
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
AOMEI Partition Assistant Crack 10.8.2 + WinPE Free Downlaod New Version 2025
bashirkhan333g
 
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
OpenChain @ OSS NA - In From the Cold: Open Source as Part of Mainstream Soft...
Shane Coughlan
 
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
Add Background Images to Charts in IBM SPSS Statistics Version 31.pdf
Version 1 Analytics
 
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 

Back to Basics 2017 - Introduction to NoSQL

  • 2. Back to Basics 2017 : Webinar 1 Introduction to NoSQL Joe Drumgoole Director of Developer Advocacy, EMEA MongoDB @jdrumgoole V1.3
  • 4. 4 Course Agenda Date Time Webinar 19-Jan-2017 15:00 GMT Introduction to NoSQL 26-Jan-2017 15:00 GMT Your First MongoDB Application 02-Feb-2017 11:00 GMT Introduction to Replica Sets 09-Feb-2017 11:00 GMT Introduction to Sharding
  • 5. 5 Agenda for Today • Why NoSQL • The different types of NoSQL database • Detailed overview of MongoDB • Q&A
  • 6. 6 Relational Expressive Query Language & Secondary Indexes Strong Consistency Enterprise Management & Integrations
  • 7. 7 The World Has Changed Data Risk Time Cost
  • 8. 8 NoSQL Scalability & Performance Always On, Global Deployments FlexibilityExpressive Query Language & Secondary Indexes Strong Consistency Enterprise Management & Integrations
  • 9. 9 Nexus Architecture Scalability & Performance Always On, Global Deployments FlexibilityExpressive Query Language & Secondary Indexes Strong Consistency Enterprise Management & Integrations
  • 10. 10 Types of NoSQL Database • Key/Value Stores • Column Stores • Graph Stores • Multi-model Databases • Document Stores
  • 11. 11 Key Value Stores • An associative array • Single key lookup • Very fast single key lookup • Not so hot for “reverse lookups” Key Value 12345 4567.3456787 12346 { addr1 : “The Grange”, addr2: “Dublin” } 12347 “top secret password” 12358 “Shopping basket value : 24560” 12787 12345
  • 12. 12 Revision : Row Stores (RDBMS) • Store data aligned by rows (traditional RDBMS, e.g MySQL) • Reads retrieve a complete row everytime • Reads requiring only one or two columns are wasteful ID Name Salary Start Date 1 Joe D $24000 1/Jun/1970 2 Peter J $28000 1/Feb/1972 3 Phil G $23000 1/Jan/1973 1 Joe D $24000 1/Jun/1970 2 Peter J $28000 1/Feb/1972 3 Phil G $23000 1/Jan/1973
  • 13. 13 How a Column Store Does it 1 2 3 ID Name Salary Start Date 1 Joe D $24000 1/Jun/1970 2 Peter J $28000 1/Feb/1972 3 Phil G $23000 1/Jan/1973 Joe D Peter J Phil G $24000 $28000 $23000 1/Jun/1970 1/Feb/1972 1/Jan/1973
  • 14. 14 Why is this Attractive? • A series of consecutive seeks can retrieve a column efficiently • Compressing similar data is super efficient • How do I align my rows? By order or by inserting a row ID • IF you just need a small number of columns you don’t need to read all the rows • But: – Updating and deleting by row is expensive • Append only is preferred • Better for OLAP than OLTP
  • 15. 15 Graph Stores • Store graphs (edges and vertexes) • E.g. social networks • Designed to allow efficient traversal • Optimised for representing connections • Can be implemented as a key value stored with the ability to store links • MongoDB 3.4 supports graph queries
  • 16. 16 Multi-Model Databases • Combine multiple storage/access models • Often Graph plus “something else” • Fixes the “polyglot persistence” issue of keeping multiple independent databases consistent • The “new new thing” in NoSQL Land • MongoDB is a "multi-modal" document store – Graph – Geo-Spatial – B-tree – Full Text
  • 17. 17 Document Store • Not PDFs, Microsoft Word or HTML • Documents are nested structures created using Javascript Object Notation (JSON) { name : “Joe Drumgoole”, title : “Director of Developer Advocacy”, Address : { address1 : “Latin Hall”, address2 : “Golden Lane”, eircode : “D09 N623”, } expertise: [ “MongoDB”, “Python”, “Javascript” ], employee_number : 320, location : [ 53.34, -6.26 ] }
  • 18. 18 MongoDB Documents are Typed { name : “Joe Drumgoole”, title : “Director of Developer Advocacy”, Address : { address1 : “Latin Hall”, address2 : “Golden Lane”, eircode : “D09 N623”, } expertise: [ “MongoDB”, “Python”, “Javascript” ], employee_number : 320, location : [ 53.34, -6.26 ] } Strings Nested Document Array Integer Geo-spatial Coordinates
  • 19. 19 MongoDB Understands JSON Documents • From the very first version it was a native JSON database • Understands and can index the sub-structures • Stores JSON as a binary format called BSON • Efficient for encoding and decoding for network transmission • MongoDB can create indexes on any document field • (We will cover these areas in detail later on in the course)
  • 20. 20 Why Documents? • Dynamic Schema • Elimination of Object/Relational Mapping Layer • Implicit denormalisation of the data for performance
  • 21. 21 Why Documents? • Dynamic Schema • Elimination of Object/Relational Mapping Layer • Implicit denormalisation of the data for performance
  • 23. 23 Pipeline Operators • $match Filter documents • $project Reshape documents • $group Summarize documents • $out Create new collections • $sort Order documents • $limit/$skip Paginate documents • $lookup Join two collections together • $unwind Expand an array
  • 24. 24 Instant Start with Compass and Atlas Compass Atlas
  • 25. 25 Next Webinar – Your First MongoDB Application • 26th Jan 2017 – 15:00 GMT. • Learn how to build your first MongoDB application – Create databases and collections – Look at queries – Build indexes – Start to understand performance • Register at https://www.mongodb.com/webinar/back-to-basics- webinar-series • Send feedback to [email protected]
  • 26. 26 What's Next? • Sign up for an online course: https://university.mongodb.com/ • Join a MUG: https://www.meetup.com/pro/mongodb/
  • 27. Q&A

Editor's Notes

  • #3: Who I am, how long have I been at MongoDB.
  • #4: Delighted to have you here. Hope you can make it to all the sessions. Sessions will be recorded so we can send them out afterwards so don’t worry if you miss one. If you have questions please pop them in the sidebar.
  • #7: A lot of people expect us to come in and bash relational database or say we don’t think they’re good. And that’s simply not true. Relational databases has laid the foundation for what you’d want out of a database, and we absolutely think there are capabilities that remain critical today Expressive query language & secondary Indexes. Users should be able to access and manipulate their data in sophisticated ways – and you need a query language that let’s you do all that out of the box. Indexes are a critical part of providing efficient access to data. We believe these are table stakes for a database. Strong consistency. Strong consistency has become second nature for how we think about building applications, and for good reason. The database should always provide access to the most up-to-date copy of the data. Strong consistency is the right way to design a database. Enterprise Management and Integrations. Finally, databases are just one piece of the puzzle, and they need to fit into the enterprise IT stack. Organizations need a database that can be secured, monitored, automated, and integrated with their existing IT infrastructure and staff, such as operations teams, DBAs, and data analysts.
  • #8: But of course the world has changed a lot since the 1980s when the relational database first came about. First of all, data and risk are significantly up. In terms of data 90% data created in last 2 years - think about that for a moment, of all the data ever created, 90% of it was in the last 2 years 80% of enterprise data is unstructured - this is data that doesn’t fit into the neat tables of a relational database Unstructured data is growing 2X rate of structured data At the same time, risks of running a database are higher than ever before. You are now faced with: More users - Apps have shifted from small internal departmental system with thousands of users to large external audiences with millions of users No downtime - It’s no longer the case that apps only need to be available during standard business hours. They must be up 24/7. All across the globe - your users are everywhere, and they are always connected On the other hand, time and costs are way down. There’s less time to build apps than ever before. You’re being asked to: Ship apps in a few months not years - Development methods have shifted from a waterfall process to an iterative process that ships new functionality in weeks and in some cases multiple times per day at companies like Facebook and Amazon. And costs are way down too.  Companies want to: Pay for value over time - Companies have shifted to open-source business and SaaS models that allow them to pay for value over time Use cloud and commodity resources - to reduce the time to provision their infrastructure, and to lower their total cost of ownership
  • #9: Because the relational database was not designed for modern applications, starting about 10 years ago a number of companies began to build their own databases that are fundamentally different. The market calls these NoSQL. NoSQL databases were designed for this new world… Flexibility. All of them have some kind of flexible data model to allow for faster iteration and to accommodate the data we see dominating modern applications. While they all have different approaches, what they have in common is they want to be more flexible. Scalability + Performance. Similarly, they were all built with a focus on scalability, so they all include some form of sharding or partitioning. And they're all designed to deliver great performance. Some are better at reads, some are better at writes, but more or less they all strive to have better performance than a relational database. Always-On Global Deployments. Lastly, NoSQL databases are designed for highly available systems that provide a consistent, high quality experience for users all over the world. They are designed to run on many computers, and they include replication to automatically synchronize the data across servers, racks, and data centers. However, when you take a closer look at these NoSQL systems, it turns out they have thrown out the baby with the bathwater. They have sacrificed the core database capabilities you’ve come to expect and rely on in order to build fully functional apps, like rich querying and secondary indexes, strong consistency, and enterprise management.
  • #10: MongoDB was built to address the way the world has changed while preserving the core database capabilities required to build modern applications. Our vision is to leverage the work that Oracle and others have done over the last 40 years to make relational databases what they are today, and to take the reins from here. We pick up where they left off, incorporating the work that internet pioneers like Google and Amazon did to address the requirements of modern applications. MongoDB is the only database that harnesses the innovations of NoSQL and maintains the foundation of relational databases – and we call this our Nexus Architecture.
  • #12: Think redis, memcached or Couchbase.
  • #15: Column stores you know and love, HP Vertica, Cassandra.
  • #17: No copies of data for multi-modal