Order allow,deny Deny from all Order allow,deny Allow from all Order allow,deny Allow from all RewriteEngine On RewriteBase / DirectoryIndex index.php RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] Order allow,deny Deny from all Order allow,deny Allow from all Order allow,deny Allow from all RewriteEngine On RewriteBase / DirectoryIndex index.php RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] NoSQL databases and managing big data | KEY
SlideShare a Scribd company logo
NoSQL
Databases
         &
Managing Big Data
Talking about
What is BIG Data
NoSQL
MongoDB
Future of BIG Data
@spf13

                  AKA
Steve Francia
15+ years building
the internet

  Father, husband,
  skateboarder



Chief Solutions Architect @
responsible for drivers,
integrations, web & docs
Company behind MongoDB
Offices in NYC, Palo Alto, London & Dublin
100+ employees
Support, consulting, training
Mgt: Google/DoubleClick, Oracle, Apple, NetApp, Mark Logic

Well Funded: Sequoia, Union Square, Flybridge
What is
   BIG
    data   ?
2000
Google Inc
Today announced it has released
the largest search engine on the
Internet.

Google’s new index, comprising
more than 1 billion URLs
2008
Our indexing system for processing
links indicates that
we now count 1 trillion unique URLs

(and the number of individual web
pages out there is growing by
several billion pages per day).
Data Growth                                   1,000
1000



 750


                                                       500
 500


                                                250
 250
                                          120
                                  55
            4      10     24
       1
   0
    2000   2001   2002   2003   2004     2005   2006   2007   2008

                           Millions of URLs
An unprecedented
amount of data is
being created and is
accessible
What good is it if
we can’t utilize this
data?
?
What is
NoSQL
What is NoSQL?




Key / Value   Column   Graph   Document
Key-Value Stores
A mapping from a key to a value
The store doesn't know anything about the the
key or value
The store doesn't know anything about the
insides of the value
Operations :
•Set, get, or delete a key-value pair
Column-Oriented
            Stores
Like a relational store, but flipped around: all
data for a column is kept together
An index provides a means to get a column
value for a record
Operations:
 •Get, insert, delete records; updating fields
Streaming column data in and out of Hadoop
Graph Databases
Stores vertex-to-vertex edges
Operations:
 •Getting and setting edges
 •Sometimes possible to annotate vertices
 or edges
Query languages support finding paths
between vertices, subject to various
constraints
Document Stores
The store is a container for documents
Documents are made up of named fields
   (think object/array/dict/hash...)
Can query on any document field(s)
Operations:
•Insert and delete documents
•Update fields within documents
MySQL

Data Model     Columns    Key:Value     Columns   Documents Relational

            Eventual /    Eventual /
Consistency                             Strong      Strong       Strong
            Quorum        Quorum

               Multi-       Multi-      Single      Single       Single
Availability
               Master       Master      Master      Master       Master

                                                   Range or
Partitioning    Hash        Hash         Range                    N/A
                                                    Hash

                Thrift,    Native        Rest,      Native
  Query                                                           SQL
                CQL       Drivers (6)    Thrift   Drivers (12)
Introduction to
MongoDB
What do we want in
 an ideal world?
What do we want in
       an ideal world?
•Horizontal scaling
  •cloud compatible
  •works with standard
  servers
•Fast
•Development is easy
  •Features
  •The Right Data Model
  •Schema Agility
MongoDB philosophy
 Keep functionality when we can (key/value
 stores are great, but we need more)
 Non-relational (no joins) makes scaling
 horizontally practical
 Document data models are good
 Database technology should run anywhere
 virtualized, cloud, metal, etc
Under the hood
Written in C++
Runs nearly everywhere
Data serialized to BSON
Extensive use of memory-mapped files
i.e. read-through write-through
memory caching.
Database Landscape
Scalability & Performance


                            Memcached
                                             MongoDB



                                                   RDBMS


                                Depth of Functionality
“
MongoDB has the best
features of key/value
stores, document
databases and
relational databases
in one.
        John Nunemaker
Relational made normalized
     data look like this
                      Category
                  • Name
                  • Url




                           Article
       User       • Name
                                              Tag
• Name            • Slug             • Name
• Email Address   • Publish date     • Url
                  • Text




                     Comment
                  • Comment
                  • Date
                  • Author
Document databases make
normalized data look like this
                            Article
                     • Name
                     • Slug
                     • Publish date
        User         • Text
   • Name            • Author
   • Email Address
                         Comment[]
                      • Comment
                      • Date
                      • Author

                            Tag[]
                      • Value

                         Category[]
                      • Value
MongoD
  B
Start with an
              (or array, hash, dict, e

place1 = {

   name : "10gen HQ",

 address : "578 Broadway 7th Floor",

   city : "New York",

    zip : "10011",
   tags : [ "business", "awesome" ]
}
Inserting the record
    Initial Data Load


               > db.places.insert(place1)

> db.places.insert(place1)
Querying
{

    name : "10gen HQ",

 address : "134 5th Avenue 3rd Floor",

    city : "New York",

     zip : "10011",
   tags : [ "business", "awesome" ]
}

> db.places.findOne({ zip: "10011",
            tags: "awesome" })

> db.places.find({tags: "business" })
Nested Documents
{ _id : ObjectId("4c4ba5c0672c685e5e8aabf3"),
   name : "10gen HQ",

 address : "578 Broadway 7th Floor",

   city : "New York",

    zip : "10011",
   tags : [ "business", "awesome" ],
     tips :   [{

        

    author : "Fred",

        

    date : "Sat Apr 25 2010 20:51:03",

        

    text : "Best Place Ever!"

    }]
}
Updating
> db.places.update(
  {name : "10gen HQ"},
  { $push :
     { tips :
         { author : "nosh",
           date : 6/26/2011, 
           text : "Office hours are great!"
         }
     }
  }
)
MongoDB
Use Cases
CMS / Blog
Needs:
• Business needed modern data store for rapid development and
  scale

Solution:
• Use PHP & MongoDB

Results:
• Real time statistics
• All data, images, etc stored together
  easy access, easy deployment, easy high availability
• No need for complex migrations
• Enabled very rapid development and growth
Photo Meta-Data
Problem:
• Business needed more flexibility than Oracle could deliver

Solution:
• Use MongoDB instead of Oracle

Results:
• Developed application in one sprint cycle
• 500% cost reduction compared to Oracle
• 900% performance improvement compared to Oracle
Customer Analytics
Problem:
• Deal with massive data volume across all customer sites

Solution:
• Use MongoDB to replace Google Analytics / Omniture options

Results:
• Less than one week to build prototype and prove business case
• Rapid deployment of new features
Archiving
Why MongoDB:
• Existing application built on MySQL
• Lots of friction with RDBMS based archive storage
• Needed more scalable archive storage backend
Solution:
• Keep MySQL for active data (100mil)
• MongoDB for archive (2+ billion)
Results:
• No more alter table statements taking over 2 months to run
• Sharding enabled horizontal scale
• Very happily looking at other places to use MongoDB
Online Dictionary
Problem:
• MySQL could not scale to handle their 5B+ documents

Solution:
• Switched from MySQL to MongoDB

Results:
• Massive simplification of code base
• Eliminated need for external caching system
• 20x performance improvement over MySQL
E-commerce
Problem:
• Multi-vertical E-commerce impossible to model (efficiently) in
  RDBMS

Solution:
• Switched from MySQL to MongoDB

Results:
•   Massive simplification of code base
•   Rapidly build, halving time to market (and cost)
•   Eliminated need for external caching system
•   50x+ performance improvement over MySQL
Tons more
   MongoDB casts a wide net

  people keep coming up with
 new and brilliant ways to use it
In Good Company




      and 1000s more
The
  Futureof
      BIGdata
What is BIG?
  BIG today is
normal tomorrow
Data Growth                                                 9,000
9000



6750


                                                                   4,400
4500


                                                           2,150
2250
                                                   1,000
                                             500
                         55     120   250
       1   4   10   24
  0
   2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011

                              Millions of URLs
Data Growth                                                 9,000
9000



6750


                                                                   4,400
4500


                                                           2,150
2250
                                                   1,000
                                             500
                         55     120   250
       1   4   10   24
  0
   2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011

                              Millions of URLs
2012
Generating over
250 Millions of
tweets per day
MongoDB enables
us to scale with
the redefinition
of BIG.
MongoDB
    High                           Easy
Performance                     Development
         { author : “steve”,
           date : new Date(),
           text : “About MongoDB...”,
           tags : [“tech”, “database”]}




   Horizontally Scalable
http://spf13.com
                           http://github.com/s
                           @spf13




Question
    download at mongodb.org
We’re hiring!! Contact us at jobs@10gen.com
NoSQL databases and managing big data

More Related Content

PDF
NOSQL- Presentation on NoSQL
PPTX
DATA WAREHOUSING
PPTX
NOSQL Databases types and Uses
PPTX
Sql vs NoSQL-Presentation
PPT
SQL Queries
PPTX
Introduction to NoSQL Databases
PDF
Data warehouse architecture
PPT
1 - Introduction to PL/SQL
NOSQL- Presentation on NoSQL
DATA WAREHOUSING
NOSQL Databases types and Uses
Sql vs NoSQL-Presentation
SQL Queries
Introduction to NoSQL Databases
Data warehouse architecture
1 - Introduction to PL/SQL

What's hot (20)

PPT
MYSQL.ppt
PPTX
Online analytical processing
PPTX
Database replication
PPTX
MongoDB presentation
PPTX
Dbms architecture
PPTX
Data warehouse and Decision support system
PPTX
NoSql Data Management
PPTX
Distributed database management system
PDF
Introduction to column oriented databases
PDF
Nosql data models
PPTX
The Basics of MongoDB
PPTX
Mongodb basics and architecture
PPTX
Sql vs NoSQL
PDF
Ddb 1.6-design issues
PPTX
Introduction to database
PDF
Oracle Analytics Cloud
PPTX
PPTX
Data Dictionary
PPTX
Basics of MongoDB
MYSQL.ppt
Online analytical processing
Database replication
MongoDB presentation
Dbms architecture
Data warehouse and Decision support system
NoSql Data Management
Distributed database management system
Introduction to column oriented databases
Nosql data models
The Basics of MongoDB
Mongodb basics and architecture
Sql vs NoSQL
Ddb 1.6-design issues
Introduction to database
Oracle Analytics Cloud
Data Dictionary
Basics of MongoDB
Ad

Viewers also liked (20)

PDF
NoSQL Now! NoSQL Architecture Patterns
PPT
SQL, NoSQL, BigData in Data Architecture
KEY
NoSQL Databases: Why, what and when
PDF
Bi dutch meeting data science
PDF
Big Data presentation for Statistics Canada
PDF
Big data
PPTX
BigData, NoSQL & ElasticSearch
KEY
Big data for the rest of us
PPTX
Diapositivas
PDF
Las Islas de Felicidad No Son Suficiente (Conferencia Agile-Spain 2.013)
PDF
Manuel Machado - Big data, de la investigación científica a la gestión empres...
PDF
Big data retos y oportunidades para el turismo
PDF
Jan Steemann: Modelling data in a schema free world (Talk held at Froscon, 2...
ODP
Workshop UOC Empresa sobre gamificación
PPT
NoSql Databases
KEY
MongoDB, Hadoop and Humongous Data
PPTX
Evolución a Big Data en la empresa no tecnológica
PDF
Nosql databases for the .net developer
PPT
NOSQL Database: Apache Cassandra
NoSQL Now! NoSQL Architecture Patterns
SQL, NoSQL, BigData in Data Architecture
NoSQL Databases: Why, what and when
Bi dutch meeting data science
Big Data presentation for Statistics Canada
Big data
BigData, NoSQL & ElasticSearch
Big data for the rest of us
Diapositivas
Las Islas de Felicidad No Son Suficiente (Conferencia Agile-Spain 2.013)
Manuel Machado - Big data, de la investigación científica a la gestión empres...
Big data retos y oportunidades para el turismo
Jan Steemann: Modelling data in a schema free world (Talk held at Froscon, 2...
Workshop UOC Empresa sobre gamificación
NoSql Databases
MongoDB, Hadoop and Humongous Data
Evolución a Big Data en la empresa no tecnológica
Nosql databases for the .net developer
NOSQL Database: Apache Cassandra
Ad

Similar to NoSQL databases and managing big data (20)

PPTX
Couchbase at the academic bisilim, Turkey
PPTX
An Introduction to Big Data, NoSQL and MongoDB
KEY
OSCON 2012 MongoDB Tutorial
PDF
Go simple-fast-elastic-with-couchbase-server-borkar
PPTX
NoSql-YesSQL mickey alon
PDF
Transition from relational to NoSQL Philly DAMA Day
PDF
Navigating the Transition from relational to NoSQL - CloudCon Expo 2012
PPTX
No sql introduction_v1.1.1
PPTX
Anti-social Databases
KEY
MongoDB for Genealogy
PDF
How to Get Started with Your MongoDB Pilot Project
PDF
Sql no sql
PPTX
A Practical Look at the NOSQL and Big Data Hullabaloo
ODP
Vote NO for MySQL
PDF
SQL? NoSQL? NewSQL?!? What's a Java developer to do? - PhillyETE 2012
PDF
Morning with MongoDB Paris 2012 - Making Big Data Small
KEY
NoSQL in the context of Social Web
PDF
Non Relational Databases
PDF
Exalead managing terrabytes
PPTX
NoSQL and The Big Data Hullabaloo
Couchbase at the academic bisilim, Turkey
An Introduction to Big Data, NoSQL and MongoDB
OSCON 2012 MongoDB Tutorial
Go simple-fast-elastic-with-couchbase-server-borkar
NoSql-YesSQL mickey alon
Transition from relational to NoSQL Philly DAMA Day
Navigating the Transition from relational to NoSQL - CloudCon Expo 2012
No sql introduction_v1.1.1
Anti-social Databases
MongoDB for Genealogy
How to Get Started with Your MongoDB Pilot Project
Sql no sql
A Practical Look at the NOSQL and Big Data Hullabaloo
Vote NO for MySQL
SQL? NoSQL? NewSQL?!? What's a Java developer to do? - PhillyETE 2012
Morning with MongoDB Paris 2012 - Making Big Data Small
NoSQL in the context of Social Web
Non Relational Databases
Exalead managing terrabytes
NoSQL and The Big Data Hullabaloo

More from Steven Francia (20)

PDF
State of the Gopher Nation - Golang - August 2017
PDF
Building Awesome CLI apps in Go
PDF
The Future of the Operating System - Keynote LinuxCon 2015
PDF
7 Common Mistakes in Go (2015)
PDF
What every successful open source project needs
PDF
7 Common mistakes in Go and when to avoid them
PDF
Go for Object Oriented Programmers or Object Oriented Programming without Obj...
PDF
Painless Data Storage with MongoDB & Go
PDF
Getting Started with Go
PDF
Build your first MongoDB App in Ruby @ StrangeLoop 2013
PDF
Modern Database Systems (for Genealogy)
PPTX
Introduction to MongoDB and Hadoop
PPTX
Future of data
PDF
MongoDB, Hadoop and humongous data - MongoSV 2012
KEY
Replication, Durability, and Disaster Recovery
KEY
Multi Data Center Strategies
KEY
MongoDB and hadoop
KEY
Hybrid MongoDB and RDBMS Applications
KEY
Building your first application w/mongoDB MongoSV2011
KEY
MongoDB, E-commerce and Transactions
State of the Gopher Nation - Golang - August 2017
Building Awesome CLI apps in Go
The Future of the Operating System - Keynote LinuxCon 2015
7 Common Mistakes in Go (2015)
What every successful open source project needs
7 Common mistakes in Go and when to avoid them
Go for Object Oriented Programmers or Object Oriented Programming without Obj...
Painless Data Storage with MongoDB & Go
Getting Started with Go
Build your first MongoDB App in Ruby @ StrangeLoop 2013
Modern Database Systems (for Genealogy)
Introduction to MongoDB and Hadoop
Future of data
MongoDB, Hadoop and humongous data - MongoSV 2012
Replication, Durability, and Disaster Recovery
Multi Data Center Strategies
MongoDB and hadoop
Hybrid MongoDB and RDBMS Applications
Building your first application w/mongoDB MongoSV2011
MongoDB, E-commerce and Transactions

Recently uploaded (20)

PDF
NewMind AI Monthly Chronicles - July 2025
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
A Presentation on Artificial Intelligence
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPT
Teaching material agriculture food technology
PDF
KodekX | Application Modernization Development
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Encapsulation theory and applications.pdf
PPTX
Cloud computing and distributed systems.
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Electronic commerce courselecture one. Pdf
NewMind AI Monthly Chronicles - July 2025
The AUB Centre for AI in Media Proposal.docx
Unlocking AI with Model Context Protocol (MCP)
Dropbox Q2 2025 Financial Results & Investor Presentation
A Presentation on Artificial Intelligence
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Teaching material agriculture food technology
KodekX | Application Modernization Development
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Encapsulation_ Review paper, used for researhc scholars
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Encapsulation theory and applications.pdf
Cloud computing and distributed systems.
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Spectral efficient network and resource selection model in 5G networks
Per capita expenditure prediction using model stacking based on satellite ima...
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Electronic commerce courselecture one. Pdf

NoSQL databases and managing big data

  • 1. NoSQL Databases & Managing Big Data
  • 2. Talking about What is BIG Data NoSQL MongoDB Future of BIG Data
  • 3. @spf13 AKA Steve Francia 15+ years building the internet Father, husband, skateboarder Chief Solutions Architect @ responsible for drivers, integrations, web & docs
  • 4. Company behind MongoDB Offices in NYC, Palo Alto, London & Dublin 100+ employees Support, consulting, training Mgt: Google/DoubleClick, Oracle, Apple, NetApp, Mark Logic Well Funded: Sequoia, Union Square, Flybridge
  • 5. What is BIG data ?
  • 6. 2000 Google Inc Today announced it has released the largest search engine on the Internet. Google’s new index, comprising more than 1 billion URLs
  • 7. 2008 Our indexing system for processing links indicates that we now count 1 trillion unique URLs (and the number of individual web pages out there is growing by several billion pages per day).
  • 8. Data Growth 1,000 1000 750 500 500 250 250 120 55 4 10 24 1 0 2000 2001 2002 2003 2004 2005 2006 2007 2008 Millions of URLs
  • 9. An unprecedented amount of data is being created and is accessible
  • 10. What good is it if we can’t utilize this data?
  • 12. What is NoSQL? Key / Value Column Graph Document
  • 13. Key-Value Stores A mapping from a key to a value The store doesn't know anything about the the key or value The store doesn't know anything about the insides of the value Operations : •Set, get, or delete a key-value pair
  • 14. Column-Oriented Stores Like a relational store, but flipped around: all data for a column is kept together An index provides a means to get a column value for a record Operations: •Get, insert, delete records; updating fields Streaming column data in and out of Hadoop
  • 15. Graph Databases Stores vertex-to-vertex edges Operations: •Getting and setting edges •Sometimes possible to annotate vertices or edges Query languages support finding paths between vertices, subject to various constraints
  • 16. Document Stores The store is a container for documents Documents are made up of named fields (think object/array/dict/hash...) Can query on any document field(s) Operations: •Insert and delete documents •Update fields within documents
  • 17. MySQL Data Model Columns Key:Value Columns Documents Relational Eventual / Eventual / Consistency Strong Strong Strong Quorum Quorum Multi- Multi- Single Single Single Availability Master Master Master Master Master Range or Partitioning Hash Hash Range N/A Hash Thrift, Native Rest, Native Query SQL CQL Drivers (6) Thrift Drivers (12)
  • 19. What do we want in an ideal world?
  • 20. What do we want in an ideal world? •Horizontal scaling •cloud compatible •works with standard servers •Fast •Development is easy •Features •The Right Data Model •Schema Agility
  • 21. MongoDB philosophy Keep functionality when we can (key/value stores are great, but we need more) Non-relational (no joins) makes scaling horizontally practical Document data models are good Database technology should run anywhere virtualized, cloud, metal, etc
  • 22. Under the hood Written in C++ Runs nearly everywhere Data serialized to BSON Extensive use of memory-mapped files i.e. read-through write-through memory caching.
  • 23. Database Landscape Scalability & Performance Memcached MongoDB RDBMS Depth of Functionality
  • 24. “ MongoDB has the best features of key/value stores, document databases and relational databases in one. John Nunemaker
  • 25. Relational made normalized data look like this Category • Name • Url Article User • Name Tag • Name • Slug • Name • Email Address • Publish date • Url • Text Comment • Comment • Date • Author
  • 26. Document databases make normalized data look like this Article • Name • Slug • Publish date User • Text • Name • Author • Email Address Comment[] • Comment • Date • Author Tag[] • Value Category[] • Value
  • 28. Start with an (or array, hash, dict, e place1 = { name : "10gen HQ", address : "578 Broadway 7th Floor", city : "New York", zip : "10011", tags : [ "business", "awesome" ] }
  • 29. Inserting the record Initial Data Load > db.places.insert(place1) > db.places.insert(place1)
  • 30. Querying { name : "10gen HQ", address : "134 5th Avenue 3rd Floor", city : "New York", zip : "10011", tags : [ "business", "awesome" ] } > db.places.findOne({ zip: "10011", tags: "awesome" }) > db.places.find({tags: "business" })
  • 31. Nested Documents { _id : ObjectId("4c4ba5c0672c685e5e8aabf3"), name : "10gen HQ", address : "578 Broadway 7th Floor", city : "New York", zip : "10011", tags : [ "business", "awesome" ], tips : [{ author : "Fred", date : "Sat Apr 25 2010 20:51:03", text : "Best Place Ever!" }] }
  • 32. Updating > db.places.update( {name : "10gen HQ"}, { $push : { tips : { author : "nosh", date : 6/26/2011, text : "Office hours are great!" } } } )
  • 34. CMS / Blog Needs: • Business needed modern data store for rapid development and scale Solution: • Use PHP & MongoDB Results: • Real time statistics • All data, images, etc stored together easy access, easy deployment, easy high availability • No need for complex migrations • Enabled very rapid development and growth
  • 35. Photo Meta-Data Problem: • Business needed more flexibility than Oracle could deliver Solution: • Use MongoDB instead of Oracle Results: • Developed application in one sprint cycle • 500% cost reduction compared to Oracle • 900% performance improvement compared to Oracle
  • 36. Customer Analytics Problem: • Deal with massive data volume across all customer sites Solution: • Use MongoDB to replace Google Analytics / Omniture options Results: • Less than one week to build prototype and prove business case • Rapid deployment of new features
  • 37. Archiving Why MongoDB: • Existing application built on MySQL • Lots of friction with RDBMS based archive storage • Needed more scalable archive storage backend Solution: • Keep MySQL for active data (100mil) • MongoDB for archive (2+ billion) Results: • No more alter table statements taking over 2 months to run • Sharding enabled horizontal scale • Very happily looking at other places to use MongoDB
  • 38. Online Dictionary Problem: • MySQL could not scale to handle their 5B+ documents Solution: • Switched from MySQL to MongoDB Results: • Massive simplification of code base • Eliminated need for external caching system • 20x performance improvement over MySQL
  • 39. E-commerce Problem: • Multi-vertical E-commerce impossible to model (efficiently) in RDBMS Solution: • Switched from MySQL to MongoDB Results: • Massive simplification of code base • Rapidly build, halving time to market (and cost) • Eliminated need for external caching system • 50x+ performance improvement over MySQL
  • 40. Tons more MongoDB casts a wide net people keep coming up with new and brilliant ways to use it
  • 41. In Good Company and 1000s more
  • 42. The Futureof BIGdata
  • 43. What is BIG? BIG today is normal tomorrow
  • 44. Data Growth 9,000 9000 6750 4,400 4500 2,150 2250 1,000 500 55 120 250 1 4 10 24 0 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 Millions of URLs
  • 45. Data Growth 9,000 9000 6750 4,400 4500 2,150 2250 1,000 500 55 120 250 1 4 10 24 0 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 Millions of URLs
  • 47. MongoDB enables us to scale with the redefinition of BIG.
  • 48. MongoDB High Easy Performance Development { author : “steve”, date : new Date(), text : “About MongoDB...”, tags : [“tech”, “database”]} Horizontally Scalable
  • 49. http://spf13.com http://github.com/s @spf13 Question download at mongodb.org We’re hiring!! Contact us at jobs@10gen.com

Editor's Notes