MongoDB Use Cases and Roadmap

23
Use Cases and Roadmap Norberto Leite Senior Solutions Architect, EMEA [email protected] @nleite Thursday, 25 October 12

description

From A Morning with MongoDB - Milan on October 24, 2012.

Transcript of MongoDB Use Cases and Roadmap

Page 1: MongoDB Use Cases and Roadmap

Use Cases and Roadmap

Norberto Leite

Senior Solutions Architect, [email protected]

@nleite

Thursday, 25 October 12

Page 2: MongoDB Use Cases and Roadmap

Agenda

•Use Cases•Roadmap•Future

Thursday, 25 October 12

Page 3: MongoDB Use Cases and Roadmap

Use Cases

Thursday, 25 October 12

Page 4: MongoDB Use Cases and Roadmap

Big Data = MongoDB = Solved

User Data Management High Volume Data Feeds

Content Management Operational Intelligence E-Commerce

Mobile

Thursday, 25 October 12

Page 5: MongoDB Use Cases and Roadmap

Location Based Service

•Problem:•Location based social networking service needs to scale to high number of users and check-ins

•Solution:•Used MongoDB deployed on EC2•8 clusters, 40 machines, 15k QPS, 2.3 billion records•Auto-sharding and geo-spatial indexing are key

•Results:•To date have scaled to 9m users, 3m check-ins per day, 750m total check-ins, 20m places, 400k merchants

Thursday, 25 October 12

Page 6: MongoDB Use Cases and Roadmap

•Problem:•Business needed modern data store for rapid development and scale

•Solution:•Used PHP and MongoDB

•Results:•RealTime estatistics•All data, images etc store together•No need for complex migrations•Enable very rapid development and growth

Thursday, 25 October 12

Page 7: MongoDB Use Cases and Roadmap

•Problem:•Deal with massive data volume across all customers

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

•Results:•Less than one week to build prototype and POC•Rapid deployment of new features

Thursday, 25 October 12

Page 8: MongoDB Use Cases and Roadmap

•Problem:•Lots of friction with RDMS for archiving storage•Needed to more scalable archive storage database

•Solution:•Keep MySQL for active data ( 100 Million )•MongoDB for archive ( 2 Billion )

•Results:•No more alter tables statements taking over 2 months•Sharding fixed vertical scale problem•Very happily looking for other ways to use MongoDB

Thursday, 25 October 12

Page 9: MongoDB Use Cases and Roadmap

How Telefónica uses MongoDBM2M Event Acquisition

MNOn

Operator Network

MNO1MNO2

Event acquisition

Event notification

BOSS

Event Gateway

Event Storage

Event Notifier Portal

MngPlatform

MngStorage

API

Core

Apps

Mng

Thursday, 25 October 12

Page 10: MongoDB Use Cases and Roadmap

And many others ...

Thursday, 25 October 12

Page 11: MongoDB Use Cases and Roadmap

Roadmap

Thursday, 25 October 12

Page 12: MongoDB Use Cases and Roadmap

The Evolution of MongoDB

2.2Aug ‘12

2.4 winter ‘12

2.0Sept ‘11

1.8March ‘11

Journaling

Sharding and Replica set enhancements

Spherical geo search

Index enhancements to improve size and performance

Authentication with sharded clusters

Replica Set Enhancements

Concurrency improvements

Aggregation Framework

Multi-Data Center Deployments

Improved Performance and Concurrency

Thursday, 25 October 12

Page 13: MongoDB Use Cases and Roadmap

• Concurrency: yielding + db level locking • New aggregation framework• TTL Collections• Improved free list implementation• Tag aware sharding• Read Preferences

• http://docs.mongodb.org/manual/release-notes/2.2/

2.2 Release August 2012

Thursday, 25 October 12

Page 14: MongoDB Use Cases and Roadmap

Yielding + DB Locking

• improved yielding on page fault• breaking down the global level lock• Lock per Database in 2.2• Lock per Collection post 2.2

Thursday, 25 October 12

Page 15: MongoDB Use Cases and Roadmap

Aggregation Framework• pipeline model (a bit like unix pipes)• like a "group by"–Operators–$project, $group, $match, $limit, $skip, $unwind, $sort

– Expressions–Logical Expressions: $and, $not, $or, $cmp ...–Math Expressions: $add, $divide, $mod ...–String Expressions: $strcasecmp, $substr, $toLower ...–Date/Time Expressions: $dayOfMonth, $hour...–Multi-Expressions: $ifNull, $cond

• Use Cases: Real-time / inline analytics

Thursday, 25 October 12

Page 16: MongoDB Use Cases and Roadmap

Example - For each "tag", list the authors{ title : "my tech blog" , author : "bob" , tags : [ "fun" , "good" , "tech" ] ,}

{ title : "cool tech" , author : "jim" , tags : [ "awesome" , "tech" ] ,}

Thursday, 25 October 12

Page 17: MongoDB Use Cases and Roadmap

Aggregate Command

db.blogs.aggregate( { $project : { author : 1, tags : 1 } }, { $unwind : "$tags" }, { $group : { _id : { tags : "$tags" }, authors : { $addToSet : "$author" } } });

Thursday, 25 October 12

Page 18: MongoDB Use Cases and Roadmap

Time To Live (TTL)Collections• auto expire data out of a collection• must be on a date datatype• single value is evaluated• Use Cases: data retention, cache expiration

db.events.ensureIndex( { "timestamp": 1 }, { expireAfterSeconds: 3600 } )

Thursday, 25 October 12

Page 19: MongoDB Use Cases and Roadmap

Tag aware sharding

• Distribute data based on a Tag• Use Cases: Locality for Data by Data Center

sh.addShardTag("shard0000", "dc-emea")

sh.addTagRange("mydb.users", { country: "uk"}, { country: "ul"}, "dc-emea");

sh.addTagRange("mydb.users", { country: "by"},{ country: "bz"}, "dc-emea");

Thursday, 25 October 12

Page 20: MongoDB Use Cases and Roadmap

Read Preferences

• Mode• PRIMARY, PRIMARY_PREFERRED• SECONDARY, SECONDARY_PREFERRED• NEAREST

• Tag Sets• Uses Replica Set tags• Passed Tag is used to find matching members

Thursday, 25 October 12

Page 21: MongoDB Use Cases and Roadmap

2.4 Roadmap

Must• Kerberos integration• LDAP/AD integration

Nice To Have• Hash Shard Key• Background Index Build on Secondaries• V8 for Map/Reduce (replaces Spider Monkey)• Geo: intersecting polygons, Geo shard key• Agg: $out, more functions, speed improvements

Thursday, 25 October 12

Page 22: MongoDB Use Cases and Roadmap

And beyond

• Full Text Search• Collection / Extent level locking• Field level security• Audit

Thursday, 25 October 12

Page 23: MongoDB Use Cases and Roadmap

Thursday, 25 October 12