SlideShare una empresa de Scribd logo
1 de 59
Descargar para leer sin conexión
Building Modn
Web Acaons
@spf13Steve Francia
AKA
Chief Evangelist @
responsible for Developer Experience:
drivers, integrations, web & technical writing
๏ History of web development
๏ Picking the right data model
๏ Modern DB interaction
๏ Modern Web Scale
Agda
What is a modn Web A?
What is a modn Web A?
If you don't ow whe
you've come from,
you don't ow whe
you are. - James Burke
te 90’s
๏Web is born
๏Web development mostly
done in perl or C
๏Everyone is a webmaster
๏Relational databases
r ’s
๏ Web growth
redefines scale
๏ Javascript avoided
๏ Dynamic languages come of age
๏ LAMP
๏ Everyone is a PHP programmer
๏ Relational databases
Mid ’s
๏ Social re-
redefines scale
๏ Multimedia rules
๏ Heavy caching (memcache) required LAM(m)P
๏ Frameworks (Ruby on Rails) with heavy
database abstractions en vogue
๏ Everyone is a OO programmer
๏ Relational databases*
is is whe  all
falls apa
Condons
๏ Web users exponentially increasing
๏ Excessive layering causes applications
to be slower
๏ Social (dynamic data) limits use of
caching crutch
๏ Cost per byte decreasing rapidly
๏ Data growing in size & complexity
Symptoms
๏ Over abstraction
๏ Agile development unsustainable
๏ Needlessly complex
architectures
๏ Memcache
2010 trds
(Areßing r Ißues)
๏Horizontal scale
๏Variety of Choices
(LAMP no more)
๏Specializing
Raonal designed for one ing,
used for hing
What is a modn Web A?
What is a modn Web A?
What do we lk for in
a database?
๏ Right structure to match my
data
๏ Performance & Scale
๏ Features that enable me as a
developer
K Queson:
WHAT IS A RECORD?
K Value
๏ One-dimensional storage
๏ Single value is a blob
๏ Query on key only
๏ Some support secondary indexes
๏ No schema
๏ Value cannot be updated, only replaced
Key Blob
Cassandra, Redis, MemcacheD, Riak, DynamoDB
Raonal๏ Query on any field
๏ In-place updates
๏ Two-dimensional storage
๏ Each field contains a single value
๏ Very structured schema (table)
๏ Normalization process requires many tables,
joins, indexes, and poor data locality
Primary
Key
Oracle, MSSQL, MySQL, PostgreSQL, DB2
Documt๏ N-dimensional storage
๏ Each field can contain 0, 1,
many, or embedded values
๏ Query on any field & level
๏ Flexible schema
๏ Inline updates
๏ Embedding related data has optimal data locality,
requires fewer indexes, has better performance
_id
MongoDB, CouchDB, RethinkDB
Raonal design
Documt design
Example Blog Post doc
{ _id : ObjectId("4c4ba5c0672c685e5e8aabf3"),
author : "steve",
date : "Sat Apr 24 2013 19:47:11",
text : "About MongoDB...",
tags : [ "tech", "databases" ],
comments : [
	 {
	 		 author : "Fred",
	 		 date : "Sat Apr 25 2013 20:51:03 GMT-0700",
	 		 text : "Best Post Ever!"
	 	}
]
}
What is a modn Web A?
What is a modn Web A?
MongoDB spks your ngauage
๏ Drivers in 14+ languages
๏ Interface is natural and
idiomatic for each language
๏ Document natively maps to
map/hash/object
array/dict/struct
place1 = {

 name : "10gen HQ",

 address : "229 W 43rd St. 5th Floor",

 city : "New York",

 zip : "10036",
tags : [ "business", "awesome" ]
}
Start with an object
(or array, hash, dict, etc)
Inserting the record
Initial Data Load
> db.places.insert(place1)
> db.places.insert(place1)
Querying
> db.places.findOne({ zip: "10036",
tags: "awesome" })
> db.places.find({tags: [ "rad", "awesome" ]})
{

 name : "10gen HQ",

 address : "229 W 43rd St. 5th Floor",

 city : "New York",

 zip : "10036",
tags : [ "business", "awesome" ]
}
Updating
> db.places.update(
{name : "10gen HQ"},
{ $push :
{ comments :
{ author : "steve",
date : 6/26/2013, 
text : "Office hours are great!"
}
}
}
)
Nested documents
// Index nested documents
> db.places.ensureIndex({ "comments.author":1 }) // optional
> db.places.find({'comments.author':'Fred'})
{ _id : ObjectId("4c4ba5c0672c685e5e8aabf3"),
name : "10gen HQ",

 address : "229 W 43rd St. 5th Floor",

 city : "New York",

 zip : "10036",
comments : [ {
author : "Fred",
date : "Sat Apr 25 2013 20:51:03",
text : "Best Place Ever!"

 } ]
}
Multiple values
// Index on tags (multi-key index)
> db.places.ensureIndex({ tags: 1}) // optional
> db.places.find( { tags: 'tech' } )
{
_id : ObjectId("4c4ba5c0672c685e5e8aabf3"),
name : "10gen HQ",

address : "229 W 43rd St. 5th Floor",

 city : "New York",

 zip : "10036",
tags : [ "business", "awesome", "tech" ],
}
Paginating Places in JS
per_page = 10;
page_num = 3;
places = db.places
.find({ "city" : "new york" })
.sort({ "ts" : -1 })
.skip((page_num - 1) * per_page)
.limit(per_page);
Paginating Places in Ruby
@per_page = 10
@page_num = 3
@places = @db.places
.find({ :city => "new york" })
.sort({ :ts => -1 })
.skip(( @page_num - 1 ) * @per_page)
.limit(@per_page)
ch ftures๏ Rich query language
๏ GeoSpatial
๏ Text search
๏ Flexible schema
๏ Aggregation & MapReduce
๏ GridFS
(distributed & replicated file storage)
๏ Integration with Hadoop, Storm, Solr & more
Database ndscape
Scalability&Performance
Depth of Functionality
MongoDB
Key Value
RDBMS
NoSQL popu
NoSQL popu
NoSQL popu
What is a modn Web A?
What is a modn Web A?
Scabi Needs
๏ Data is highly available
๏ Data is consistent
๏ Performant
(caching unnecessary)
Difft Aroaches
๏
MultiMaster
๏
Peer to peer
๏
Has Conflicts
๏
Ring based
approach
combines high
availability and
distribution
๏
Complex
application logic
๏
Single Master
๏
Consistent
๏
Slaves have
delayed writes
๏
High availability
๏
No scalable
solution
๏
Single Master
๏
Consistent
๏
Secondaries have
delayed writes
๏
High availability
๏
Range based
distribution
MongoDB : bui to scale
๏ Intelligent replication
๏ Automatic partitioning of data
(user configurable)
๏ Horizontal Scale
๏ Targeted Queries
๏ Parallel Processing
Igt Repcaon
Node 1
Secondary
Node 2
Secondary
Node 3
Primary
Replication
Heartbeat
Replication
Scable Archecture
Node 1
Secondary
Config
Server
Node 1
Secondary
Config
Server
Node 1
Secondary
Config
Server
Shard Shard Shard
Mongos
App Server
Mongos
App Server
Mongos
App Server
High Avaibi in Shards
Shard
Primary
Secondary
Secondary
Shard
orMongod
x
Targed Requests
Shard Shard Shard
Mongos
1
2
3
4
Pall proceßing
Shard Shard Shard
Mongos
1
2 2 2
4 44
3 3 3
6
5
What is a modn Web A?
e g database
to t your data
e g database
for YOUR dopmt
e g Database
for scale & Pfoance
Gng staed
sy deploymt
๏ Heroku
๏ Rackspace
๏ Amazon
๏ Engine Yard
๏ App Fog
๏ ServerGrove
๏ Azure
๏ Nodejitsu
Indust acaon
๏ Media &
Entertainment
๏ Retail
๏ Social
๏ Finance
๏ Gaming
๏ Insurance
๏ Healthcare
๏ Government
๏ Archiving
๏ Telecom
๏ Education
E IF YOU KED !
Questions?
http://spf13.com
http://github.com/spf13
@spf13
#DevCon5
Modern Web Applications with MongoDB

Más contenido relacionado

Más de Steven Francia

Go for Object Oriented Programmers or Object Oriented Programming without Obj...
Go for Object Oriented Programmers or Object Oriented Programming without Obj...Go for Object Oriented Programmers or Object Oriented Programming without Obj...
Go for Object Oriented Programmers or Object Oriented Programming without Obj...Steven Francia
 
Painless Data Storage with MongoDB & Go
Painless Data Storage with MongoDB & Go Painless Data Storage with MongoDB & Go
Painless Data Storage with MongoDB & Go Steven Francia
 
Getting Started with Go
Getting Started with GoGetting Started with Go
Getting Started with GoSteven Francia
 
Build your first MongoDB App in Ruby @ StrangeLoop 2013
Build your first MongoDB App in Ruby @ StrangeLoop 2013Build your first MongoDB App in Ruby @ StrangeLoop 2013
Build your first MongoDB App in Ruby @ StrangeLoop 2013Steven Francia
 
Modern Database Systems (for Genealogy)
Modern Database Systems (for Genealogy)Modern Database Systems (for Genealogy)
Modern Database Systems (for Genealogy)Steven Francia
 
Introduction to MongoDB and Hadoop
Introduction to MongoDB and HadoopIntroduction to MongoDB and Hadoop
Introduction to MongoDB and HadoopSteven Francia
 
MongoDB, Hadoop and humongous data - MongoSV 2012
MongoDB, Hadoop and humongous data - MongoSV 2012MongoDB, Hadoop and humongous data - MongoSV 2012
MongoDB, Hadoop and humongous data - MongoSV 2012Steven Francia
 
Big data for the rest of us
Big data for the rest of usBig data for the rest of us
Big data for the rest of usSteven Francia
 
OSCON 2012 MongoDB Tutorial
OSCON 2012 MongoDB TutorialOSCON 2012 MongoDB Tutorial
OSCON 2012 MongoDB TutorialSteven Francia
 
Replication, Durability, and Disaster Recovery
Replication, Durability, and Disaster RecoveryReplication, Durability, and Disaster Recovery
Replication, Durability, and Disaster RecoverySteven Francia
 
Multi Data Center Strategies
Multi Data Center StrategiesMulti Data Center Strategies
Multi Data Center StrategiesSteven Francia
 
NoSQL databases and managing big data
NoSQL databases and managing big dataNoSQL databases and managing big data
NoSQL databases and managing big dataSteven Francia
 
MongoDB, Hadoop and Humongous Data
MongoDB, Hadoop and Humongous DataMongoDB, Hadoop and Humongous Data
MongoDB, Hadoop and Humongous DataSteven Francia
 
Hybrid MongoDB and RDBMS Applications
Hybrid MongoDB and RDBMS ApplicationsHybrid MongoDB and RDBMS Applications
Hybrid MongoDB and RDBMS ApplicationsSteven Francia
 
Building your first application w/mongoDB MongoSV2011
Building your first application w/mongoDB MongoSV2011Building your first application w/mongoDB MongoSV2011
Building your first application w/mongoDB MongoSV2011Steven Francia
 
MongoDB, E-commerce and Transactions
MongoDB, E-commerce and TransactionsMongoDB, E-commerce and Transactions
MongoDB, E-commerce and TransactionsSteven Francia
 
MongoDB, PHP and the cloud - php cloud summit 2011
MongoDB, PHP and the cloud - php cloud summit 2011MongoDB, PHP and the cloud - php cloud summit 2011
MongoDB, PHP and the cloud - php cloud summit 2011Steven Francia
 

Más de Steven Francia (20)

Go for Object Oriented Programmers or Object Oriented Programming without Obj...
Go for Object Oriented Programmers or Object Oriented Programming without Obj...Go for Object Oriented Programmers or Object Oriented Programming without Obj...
Go for Object Oriented Programmers or Object Oriented Programming without Obj...
 
Painless Data Storage with MongoDB & Go
Painless Data Storage with MongoDB & Go Painless Data Storage with MongoDB & Go
Painless Data Storage with MongoDB & Go
 
Getting Started with Go
Getting Started with GoGetting Started with Go
Getting Started with Go
 
Build your first MongoDB App in Ruby @ StrangeLoop 2013
Build your first MongoDB App in Ruby @ StrangeLoop 2013Build your first MongoDB App in Ruby @ StrangeLoop 2013
Build your first MongoDB App in Ruby @ StrangeLoop 2013
 
Modern Database Systems (for Genealogy)
Modern Database Systems (for Genealogy)Modern Database Systems (for Genealogy)
Modern Database Systems (for Genealogy)
 
Introduction to MongoDB and Hadoop
Introduction to MongoDB and HadoopIntroduction to MongoDB and Hadoop
Introduction to MongoDB and Hadoop
 
Future of data
Future of dataFuture of data
Future of data
 
MongoDB, Hadoop and humongous data - MongoSV 2012
MongoDB, Hadoop and humongous data - MongoSV 2012MongoDB, Hadoop and humongous data - MongoSV 2012
MongoDB, Hadoop and humongous data - MongoSV 2012
 
Big data for the rest of us
Big data for the rest of usBig data for the rest of us
Big data for the rest of us
 
OSCON 2012 MongoDB Tutorial
OSCON 2012 MongoDB TutorialOSCON 2012 MongoDB Tutorial
OSCON 2012 MongoDB Tutorial
 
Replication, Durability, and Disaster Recovery
Replication, Durability, and Disaster RecoveryReplication, Durability, and Disaster Recovery
Replication, Durability, and Disaster Recovery
 
Multi Data Center Strategies
Multi Data Center StrategiesMulti Data Center Strategies
Multi Data Center Strategies
 
NoSQL databases and managing big data
NoSQL databases and managing big dataNoSQL databases and managing big data
NoSQL databases and managing big data
 
MongoDB, Hadoop and Humongous Data
MongoDB, Hadoop and Humongous DataMongoDB, Hadoop and Humongous Data
MongoDB, Hadoop and Humongous Data
 
MongoDB and hadoop
MongoDB and hadoopMongoDB and hadoop
MongoDB and hadoop
 
MongoDB for Genealogy
MongoDB for GenealogyMongoDB for Genealogy
MongoDB for Genealogy
 
Hybrid MongoDB and RDBMS Applications
Hybrid MongoDB and RDBMS ApplicationsHybrid MongoDB and RDBMS Applications
Hybrid MongoDB and RDBMS Applications
 
Building your first application w/mongoDB MongoSV2011
Building your first application w/mongoDB MongoSV2011Building your first application w/mongoDB MongoSV2011
Building your first application w/mongoDB MongoSV2011
 
MongoDB, E-commerce and Transactions
MongoDB, E-commerce and TransactionsMongoDB, E-commerce and Transactions
MongoDB, E-commerce and Transactions
 
MongoDB, PHP and the cloud - php cloud summit 2011
MongoDB, PHP and the cloud - php cloud summit 2011MongoDB, PHP and the cloud - php cloud summit 2011
MongoDB, PHP and the cloud - php cloud summit 2011
 

Último

Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 

Último (20)

Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 

Modern Web Applications with MongoDB

  • 2. @spf13Steve Francia AKA Chief Evangelist @ responsible for Developer Experience: drivers, integrations, web & technical writing
  • 3. ๏ History of web development ๏ Picking the right data model ๏ Modern DB interaction ๏ Modern Web Scale Agda
  • 4. What is a modn Web A?
  • 5. What is a modn Web A?
  • 6. If you don't ow whe you've come from, you don't ow whe you are. - James Burke
  • 7. te 90’s ๏Web is born ๏Web development mostly done in perl or C ๏Everyone is a webmaster ๏Relational databases
  • 8. r ’s ๏ Web growth redefines scale ๏ Javascript avoided ๏ Dynamic languages come of age ๏ LAMP ๏ Everyone is a PHP programmer ๏ Relational databases
  • 9. Mid ’s ๏ Social re- redefines scale ๏ Multimedia rules ๏ Heavy caching (memcache) required LAM(m)P ๏ Frameworks (Ruby on Rails) with heavy database abstractions en vogue ๏ Everyone is a OO programmer ๏ Relational databases*
  • 10. is is whe  all falls apa
  • 11. Condons ๏ Web users exponentially increasing ๏ Excessive layering causes applications to be slower ๏ Social (dynamic data) limits use of caching crutch ๏ Cost per byte decreasing rapidly ๏ Data growing in size & complexity
  • 12. Symptoms ๏ Over abstraction ๏ Agile development unsustainable ๏ Needlessly complex architectures ๏ Memcache
  • 13. 2010 trds (Areßing r Ißues) ๏Horizontal scale ๏Variety of Choices (LAMP no more) ๏Specializing
  • 14. Raonal designed for one ing, used for hing
  • 15. What is a modn Web A?
  • 16. What is a modn Web A?
  • 17. What do we lk for in a database? ๏ Right structure to match my data ๏ Performance & Scale ๏ Features that enable me as a developer
  • 19. K Value ๏ One-dimensional storage ๏ Single value is a blob ๏ Query on key only ๏ Some support secondary indexes ๏ No schema ๏ Value cannot be updated, only replaced Key Blob Cassandra, Redis, MemcacheD, Riak, DynamoDB
  • 20. Raonal๏ Query on any field ๏ In-place updates ๏ Two-dimensional storage ๏ Each field contains a single value ๏ Very structured schema (table) ๏ Normalization process requires many tables, joins, indexes, and poor data locality Primary Key Oracle, MSSQL, MySQL, PostgreSQL, DB2
  • 21. Documt๏ N-dimensional storage ๏ Each field can contain 0, 1, many, or embedded values ๏ Query on any field & level ๏ Flexible schema ๏ Inline updates ๏ Embedding related data has optimal data locality, requires fewer indexes, has better performance _id MongoDB, CouchDB, RethinkDB
  • 24. Example Blog Post doc { _id : ObjectId("4c4ba5c0672c685e5e8aabf3"), author : "steve", date : "Sat Apr 24 2013 19:47:11", text : "About MongoDB...", tags : [ "tech", "databases" ], comments : [ { author : "Fred", date : "Sat Apr 25 2013 20:51:03 GMT-0700", text : "Best Post Ever!" } ] }
  • 25. What is a modn Web A?
  • 26. What is a modn Web A?
  • 27. MongoDB spks your ngauage ๏ Drivers in 14+ languages ๏ Interface is natural and idiomatic for each language ๏ Document natively maps to map/hash/object array/dict/struct
  • 28. place1 = { name : "10gen HQ", address : "229 W 43rd St. 5th Floor", city : "New York", zip : "10036", tags : [ "business", "awesome" ] } Start with an object (or array, hash, dict, etc)
  • 29. Inserting the record Initial Data Load > db.places.insert(place1) > db.places.insert(place1)
  • 30. Querying > db.places.findOne({ zip: "10036", tags: "awesome" }) > db.places.find({tags: [ "rad", "awesome" ]}) { name : "10gen HQ", address : "229 W 43rd St. 5th Floor", city : "New York", zip : "10036", tags : [ "business", "awesome" ] }
  • 31. Updating > db.places.update( {name : "10gen HQ"}, { $push : { comments : { author : "steve", date : 6/26/2013, text : "Office hours are great!" } } } )
  • 32. Nested documents // Index nested documents > db.places.ensureIndex({ "comments.author":1 }) // optional > db.places.find({'comments.author':'Fred'}) { _id : ObjectId("4c4ba5c0672c685e5e8aabf3"), name : "10gen HQ", address : "229 W 43rd St. 5th Floor", city : "New York", zip : "10036", comments : [ { author : "Fred", date : "Sat Apr 25 2013 20:51:03", text : "Best Place Ever!" } ] }
  • 33. Multiple values // Index on tags (multi-key index) > db.places.ensureIndex({ tags: 1}) // optional > db.places.find( { tags: 'tech' } ) { _id : ObjectId("4c4ba5c0672c685e5e8aabf3"), name : "10gen HQ", address : "229 W 43rd St. 5th Floor", city : "New York", zip : "10036", tags : [ "business", "awesome", "tech" ], }
  • 34. Paginating Places in JS per_page = 10; page_num = 3; places = db.places .find({ "city" : "new york" }) .sort({ "ts" : -1 }) .skip((page_num - 1) * per_page) .limit(per_page);
  • 35. Paginating Places in Ruby @per_page = 10 @page_num = 3 @places = @db.places .find({ :city => "new york" }) .sort({ :ts => -1 }) .skip(( @page_num - 1 ) * @per_page) .limit(@per_page)
  • 36. ch ftures๏ Rich query language ๏ GeoSpatial ๏ Text search ๏ Flexible schema ๏ Aggregation & MapReduce ๏ GridFS (distributed & replicated file storage) ๏ Integration with Hadoop, Storm, Solr & more
  • 37. Database ndscape Scalability&Performance Depth of Functionality MongoDB Key Value RDBMS
  • 41. What is a modn Web A?
  • 42. What is a modn Web A?
  • 43. Scabi Needs ๏ Data is highly available ๏ Data is consistent ๏ Performant (caching unnecessary)
  • 44. Difft Aroaches ๏ MultiMaster ๏ Peer to peer ๏ Has Conflicts ๏ Ring based approach combines high availability and distribution ๏ Complex application logic ๏ Single Master ๏ Consistent ๏ Slaves have delayed writes ๏ High availability ๏ No scalable solution ๏ Single Master ๏ Consistent ๏ Secondaries have delayed writes ๏ High availability ๏ Range based distribution
  • 45. MongoDB : bui to scale ๏ Intelligent replication ๏ Automatic partitioning of data (user configurable) ๏ Horizontal Scale ๏ Targeted Queries ๏ Parallel Processing
  • 46. Igt Repcaon Node 1 Secondary Node 2 Secondary Node 3 Primary Replication Heartbeat Replication
  • 47. Scable Archecture Node 1 Secondary Config Server Node 1 Secondary Config Server Node 1 Secondary Config Server Shard Shard Shard Mongos App Server Mongos App Server Mongos App Server
  • 48. High Avaibi in Shards Shard Primary Secondary Secondary Shard orMongod x
  • 49. Targed Requests Shard Shard Shard Mongos 1 2 3 4
  • 50. Pall proceßing Shard Shard Shard Mongos 1 2 2 2 4 44 3 3 3 6 5
  • 51. What is a modn Web A?
  • 52. e g database to t your data
  • 53. e g database for YOUR dopmt
  • 54. e g Database for scale & Pfoance
  • 56. sy deploymt ๏ Heroku ๏ Rackspace ๏ Amazon ๏ Engine Yard ๏ App Fog ๏ ServerGrove ๏ Azure ๏ Nodejitsu
  • 57. Indust acaon ๏ Media & Entertainment ๏ Retail ๏ Social ๏ Finance ๏ Gaming ๏ Insurance ๏ Healthcare ๏ Government ๏ Archiving ๏ Telecom ๏ Education
  • 58. E IF YOU KED ! Questions? http://spf13.com http://github.com/spf13 @spf13 #DevCon5