1 / 38

Is NoSQL the Future of Data Storage?

Is NoSQL the Future of Data Storage?. By Gary Short Developer Express. Introduction. Gary Short Technical Evangelist for Developer Express C# MVP gary@garyshort.org www.garyshort.org @ garyshort . Where Does NoSQL Originate?. 1998 OS relational database

lavina
Download Presentation

Is NoSQL the Future of Data Storage?

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Is NoSQL the Future of Data Storage? By Gary Short Developer Express

  2. Introduction • Gary Short • Technical Evangelist for Developer Express • C# MVP • gary@garyshort.org • www.garyshort.org • @garyshort.

  3. Where Does NoSQL Originate? • 1998 • OS relational database • Didn’t expose an SQL interface • Created by Carlo Strozzi • Said the NoSQL movement • “departs from the relational model altogether...” • “...should have been called ‘NoREL”.

  4. More Recently... • Eric Evans reintroduced the term in 2009 • Johan Oskarsson (last.fm) • Event to discuss OS distributed databases • This labels growing number datastores • Open source • Non-relational • Distributed • (often) don’t guarantee ACID.

  5. Atlanta 2009 • No:sql(east) conference • Billed as “conference of no-reldatastores” • Worst tag line ever • SELECT fun, profit FROM real_world WHERE rel=false.

  6. Not Ant-RDBMS

  7. Key Attributes of NoSQL Databases • Don’t require fixed table schemas • Non-relational • (Usually) avoid join operations • Scale horizontally • Adding more nodes to a storage system.

  8. What Does the Taxonomy Look Like?

  9. Document Store • Apache Jackrabbit • CouchDB • MongoDB • SimpleDB • XML Databases • MarkLogic Server • eXist.

  10. Document What? • Okay think of a web page... • Relational model requires column/tag • Lots of empty columns • Wasted space • Document model just stores the pages as is • Saves on space • Very flexible.

  11. Graph Storage • AllegroGraph • Core Data • Neo4j • DEX • FlockDB.

  12. Which Means? • Graph consists of • Node (‘stations’ of the graph) • Edges (lines between them) • FlockDB • Created by the Twitter folks • Nodes = Users • Edges = Nature of relationship between nodes.

  13. Key/Value Stores • On disk • Cache in Ram • Eventually Consistent • Weak Definition • “If no updates occur for a period, eventually all updates will propagate through the system and all replicas will be consistent” • Strong Definition • “for a given update and a given replica eventually either the update reaches the replica or the replica retires” • Ordered • Distributed Hash Table allows lexicographical processing.

  14. Object Databases • Db4o • GemStone/S • InterSystemsCaché • Objectivity/DB • ZODB.

  15. Okay got it, Now Let’s Compare Some Real World Scenarios

  16. You Need Constant Consistency • You’re dealing with financial transactions • You’re dealing with medical records • You’re dealing with bonded goods • Best you use a RDMBS .

  17. You Need Horizontal Scalability • You’re working across defined timezones • You’re Aggregating large quantities of data • Maintaining a chat server (Facebook chat) • Use NoSQL.

  18. Up in the Clouds Baby • If you are using Azure or AWS • Compare costs of Azure Storage or SimpleDB to SQL Azure or Elastic RDBMS • Could be cheaper for your scenario.

  19. It’s all About the iPhone!

  20. Frequently Written Rarely Read • Think web counters and the like • Every time a user comes to a page = ctr++ • But it’s only read when the report is run • Use NoSQL (key-value storage).

  21. I Got Big Data! • Think weather stats • Satellite Images • Maps • Use NoSQL( Something like Hadoop).

  22. Binary Baby! • If you are YouTube • Flickr • Twitpic • Spotify • NoSQL (Amazon S3).

  23. Here Today Gone Tomorrow • Transient data like.. • Web Sessions • Locks • Short Term Stats • Shopping cart contents • Use NoSQL (Memcache).

  24. Data Replication • Same data in two or more locations • Music Library • Web browser • iPone App • NoSQL (CouchDB).

  25. Hit me Baby One More Time! • High Availability • High number of important transactions • Online gambling • Pay Per view • Ahem! • Online Auction • NoSQL (Cassandra – automatic clustering).

  26. Give me a Real World Example • Twitter • The challenges • Needs to store many graphs • Who you are following • Who’s following you • Who you receive phone notifications from etc • To deliver a tweet requires rapid paging of followers • Heavy write load as followers are added and removed • Set arithmetic for @mentions (intersection of users).

  27. What Did They Try? • Relational Databases • Key-Value storage of denormalized lists • Did it work? • Nope! • Either good at • Handling the write load • Or paging large amounts of data • But not both .

  28. What Did They Need? • Simplest possible thing that would work • Allow for horizontal partitioning • Allow write operations to • Arrive out of order • Or be processed more than once • Failures should result in redundant work • Not lost work!

  29. The Result was FlockDB • Stores graph data • Not optimised for graph traversal operations • Optimised for large adjacency lists • List of all edges in a graph • Key is the edge value a set of the node end points • Optimised for fast read and write • Optimised for page-able set arithmetic.

  30. How Does it Work? • Stores graphs as sets of edges between nodes • Data is partitioned by node • All queries can be answered by a single partition • Write operations are idempotent • Can be applied multiple times without changing the result • And commutative • Changing the order of operands doesn’t change the result.

  31. Commutative Writes Help Bring up Partitions • Partition can receive write traffic immediately • Receive dump of data in the background • Live for read as soon as the dump is complete.

  32. Performance? • Currently store 13 billion edges • 20K writes / second • 100K reads / second.

  33. Lessons Learned? • Use aggressive timeouts • Cut a client loose after timeout expired • Let it try again on another app server • Use same code path for error and normal ops • Error requests are periodically retried • Instrument.

  34. Punchline? • Under all the bells and whistles... • Its MySQL.

  35. So is this the Future? • Yes! • And No!

  36. Questions? • Contact me • gary@garyshort.org • @garyshort

  37. P/X001 Understanding and Preventing SQL Injection Attacks Kevin Kline P/L001 SSIS Fieldnotes Darren Green P/L002 The (Geospatial) Shapes of Things to Come Simon Munro P/L005 End to End Master Data Management with SQL Server Master Data Services Jeremy Kashel P/T007 Understanding Microsoft Certification in SQL Server Chris Testa-O'Neill Coming up… • #SQLBITS

More Related