Presentation is loading. Please wait.

Presentation is loading. Please wait.

No SQL is not about SQL No SQL is a Zoo.. Key-Value Stores Wide Column Stores Document Stores Graph Databases.

Similar presentations


Presentation on theme: "No SQL is not about SQL No SQL is a Zoo.. Key-Value Stores Wide Column Stores Document Stores Graph Databases."— Presentation transcript:

1

2 No SQL is not about SQL

3 No SQL is a Zoo.. Key-Value Stores Wide Column Stores Document Stores Graph Databases

4 Why not Traditional RDBMs? Offer incredibly useful guarantees and have been battleworn and tested.

5 Referential Integrity

6 ACID Transactions

7 Update Inventory BEGIN TRANSACTION Update Products Set Inventory = Inventory - @QuantityOrdered Where ProductID = 12242323 If (Select Inventory from Products Where ProductId = 12242323) < 0 ROLLBACK TRANSACTION COMMIT TRANSACTION t

8 And SQL.. SQL is a powerful expressive DSL (Domain Specific Language) that many, many people understand.

9 So Why No SQL?

10 Web Scale

11 Web scale can be done in SQL

12 How? Vertical Part / Logical Sharding (Instagram) Caching (28 terabytes Facebook, 2008) SQL + No SQL Think about your Architect Want to learn more? Spend time on http://highscalability.com/

13 But a reasonable question is.. How much time should we be devoting to managing scaling problems versus adding business value to these systems?

14 So what are we giving up?

15 A vailability C onsistency P artition tolerant MongoDB MySQL SQL Server Oracle RDBMs HBase (Hadoop) Google BigTable Dynamo Couch Cassandra Voldemort Redis SimpleDB CAP

16 FriendsWhoCook.com A social network of friends who enjoy cooking great food. -Add my Recipes -Add my friends -Show my friends -Like / Comment on my Friends Recipes -Search recipes of my friends, their friends, and so on by.

17

18

19

20 Problem 1: Store Recipes

21 Fairly Simple Object class Recipe { Image Photo List Comments List Ingredients List Likes Category RecipeCategory }

22 Becomes a complex RDBMess

23 Object-Relational Impedance Mismatch

24 No SQL: Document Store Data element is a document Documents grouped into collections Often store in JSON Works great with Domain Driven Design Schema-less

25 Document Store Examples MongoDB (PC) CouchDB (PA) RavenDB (PA)

26 DEMO: MongoDB

27 Demo: CouchDB

28 Problem 2: Model the Social Graph

29 Friends in RDBMS For a more sophisticated view of modeling graphs in an RDBMs: http://www.slideshare.net/quipo/rdbms-in-the-social-networks-age

30 Get my Friends Declare @ProfileID int SELECT FirstDegreeProfile.ID, FirstDegreeProfile.FirstName, FirstDegreeProfile.LastName FROMProfile AS FirstDegreeProfile JOIN Friendship ON FirstDegreeProfile.ID = Friendship.FriendID WHERE Friendship.ProfileID = @ProfileID

31 Friends and their friends Declare @ProfileID int Set @ProfileID = 1 Select FirstDegreeFriendship.FriendId as MyFriendId, SecondDegreeProfile.ID as SecondDegreeId, SecondDegreeProfile.FirstName as SecondDegreeFirstName, SecondDegreeProfile.LastName as SecondDegreeLastName from Profile as SecondDegreeProfile Join Friendship as SecondDegreeFriendship ON SecondDegreeProfile.ID = SecondDegreeFriendship.FriendID join Friendship as FirstDegreeFriendship ON SecondDegreeFriendship.ProfileID = FirstDegreeFriendship.FriendID Where FirstDegreeFriendship.ProfileId = @ProfileId /* Note: A much better solution would use a recursive CTE to compute transitive closure */

32 Graph Databases Optimized for graphs data Check out Neo4J

33 Problem 3: Schemaless / Big Data Facebook's Network: Credit Traud & Frost, UNC-Chapel Hill

34 How do we ask these questions? After we changed the like button icon for half of our users, did we get more or less likes from that sample? Of users who click on our ads, what pages did they spend the most time on? Which hidden patterns might make us competitive that we arent even aware of? Want to get far ahead of the pack? Read The Lean Startup by Eric Ries

35 Is this Actionable?

36 How about this?

37 Wide Column A Bigtable is a sparse, distributed, persistent multidimensional sorted map Source: http://jimbojw.com/wiki/index.php?title=Understanding_Hbase_and_BigTable

38 MapReduce Map(k,v) [(k 1, v 1 ), (k 2, v 2 ), (k 1, v 3 ), (k 3, v 4 )] Map(k, v) (list of intermediate key / value pairs) Internal Step: Takes list of intermediate key value pairs and converts to a key / list of values. Reduce(k, [v 1, v 2, v 3 …]) (k, n 1 ), (k, n 2 )

39 One Down Side… We have to have smart people write MapReduce programs and the problems need to be expressible as Map Reduce.. General solutions are BIG money.

40 Final thought: Big Data is BIG = ?

41 Things to Read Bigtable: A Distributed Storage System for Structured Data Dynamo: Amazons Highly Available Key-value Store MapReduce: Simplified Data Processing on Large Clusters The Google File System Towards Robust Distributed Systems http://jimbojw.com/wiki/index.php?title=Understanding_Hbase_and_Bi gTable

42 Creative Commons Acknowledgments and Thanks! Bobwitlox rosipaw


Download ppt "No SQL is not about SQL No SQL is a Zoo.. Key-Value Stores Wide Column Stores Document Stores Graph Databases."

Similar presentations


Ads by Google