SlideShare ist ein Scribd-Unternehmen logo
1 von 59
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Mehr von 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
 

Mehr von 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
 

Kürzlich hochgeladen

Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
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
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
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
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 

Kürzlich hochgeladen (20)

Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
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
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
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
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 

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