eventually consistent http with statebox and riak
play

Eventually Consistent HTTP with Statebox and Riak Author: Bob - PowerPoint PPT Presentation

11/16/11 Eventually Consistent HTTP with Statebox and Riak Eventually Consistent HTTP with Statebox and Riak Author: Bob Ippolito (@etrepum) Date: November 2011 Venue: QCon San Francisco 2011


  1. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Eventually Consistent HTTP with Statebox and Riak Author: Bob Ippolito (@etrepum) Date: November 2011 Venue: QCon San Francisco 2011 file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 1/62

  2. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Introduction This talk isn't really about web. It's about how we model data for the web. HTTP itself is not the interesting part of our systems. Our systems are mostly JSON over HTTP at the network boundary, nothing too clever! file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 2/62

  3. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Mochi's Business We provide platforms for Flash game developers Ads, analytics, virtual currency, social, scores, etc. Terabytes of data to report on file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 3/62

  4. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Just a few years ago… Millions of tuples was big Scale up vertically Single master SQL databases (Still works great for most companies) file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 4/62

  5. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Why was this easy? ACID is cheap on a single node Efficient to establish a total ordering for events Single node systems do not have network partitions! Most businesses can probably still get away with this file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 5/62

  6. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Why does this break? Availability is important (we're global!) Too expensive to scale vertically Schema evolution is hard Sharding not always possible, and rarely fun file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 6/62

  7. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Case Study: Friendwad A social graph aggregator MochiGames, Facebook, Twitter, Myspace (oops!) Original implementation built on Mnesia Mnesia causes us pain file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 7/62

  8. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Friendwad Data Model Twitter-like social digraph Each user has a unique id following: user ids that this user follows followers: user ids that follow this user file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 8/62

  9. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Friendwad Diagram Following Alice Bob Followers Alice Bob file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 9/62

  10. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Mnesia Implementation Table in mnesia for user records (id, following, followers) Multi-row transaction for each graph change At least two rows in each transaction, possibly more (third-party import) file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 10/62

  11. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Why not Mnesia? Mnesia issues beyond the scope of this talk :) Anyway, we decided to migrate to Riak file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 11/62

  12. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Riak Great solution for many of our data problems (thanks Basho!) Distributed eventually consistent key-value store But not a complete solution file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 12/62

  13. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Riak Migration The simplest thing that could possibly work (incorrectly) … appears correct with serialized glasses Riak not transactional even for changes to a single row file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 13/62

  14. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Riak Migration Continued file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 14/62

  15. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Eventual Inconsistency Popular user claimed they were missing entries in "followers" Verified that they were missing by looking at our analytics built from our transaction logs Especially non-transactional with allow_mult=false ! My face probably still has a palm-shaped dent file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 15/62

  16. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Version Terminology Client a reads version o (original state) Transform from client a on o produces version ao Think function application a(o()) file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 16/62

  17. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Adding a friend [1] Original state o for alice , bob on read id | alice | bob | followers | [] | [] | following | [] | [] | version | o | o | file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 17/62

  18. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Adding a friend [2] Write modified bob at version ao id | alice | bob | followers | [] | [] | following | [] | [alice] | version | o | ao | file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 18/62

  19. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Adding a friend [3] Write modified alice at version ao id | alice | bob | followers | [bob] | [] | following | [] | [alice] | version | ao | ao | file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 19/62

  20. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Interleaving for Fail To simulate failure we need multiple concurrent operations a is alice ! bob b is bob ! carol file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 20/62

  21. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Concurrency Pains [1] alice ! bob ( a ) initial state id | alice | bob | carol | followers | [] | [] | [] | following | [] | [] | [] | version | o | o | o | file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 21/62

  22. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Concurrency Pains [2] bob ! carol ( b ) initial state (all look same!) id | alice | bob | carol | followers | [] | [] | [] | following | [] | [] | [] | version | o | o | o | file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 22/62

  23. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Concurrency Pains [3] bob ! carol writes to bob id | alice | bob | carol | followers | [] | [] | [] | following | [] | [carol] | [] | version | o | bo | o | file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 23/62

  24. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Concurrency Pains [4] alice ! bob writes to alice id | alice | bob | carol | followers | [] | [] | [] | following | [bob] | [carol] | [] | version | ao | bo | o | file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 24/62

  25. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Concurrency Pains [5] alice ! bob writes to bob id | alice | bob | carol | followers | [] | [alice] | [] | following | [bob] | [] | [] | version | ao | ao | o | file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 25/62

  26. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Concurrency Pains [6] bob ! carol writes to carol id | alice | bob | carol | followers | [] | [alice] | [bob] | following | [bob] | [] | [] | version | ao | ao | bo | file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 26/62

  27. 11/16/11 Eventually Consistent HTTP with Statebox and Riak FAIL Concurrency ruins everything. W W W W W W W '. W .-""-._ \ \.--| / "-..__) .-' | _ / \'-.__, .__.,' `'----'._\--' VVVVVVVVVVVVVVVVVVVVV file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 27/62

  28. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Sibling Rivalry If allow_mult is on, the next read of bob will have two siblings ( [ao, bo] ) because they descend from the same vector clock. Default strategy is "last write wins", also known as pain file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 28/62

  29. 11/16/11 Eventually Consistent HTTP with Statebox and Riak Simple fix? Merging ao and bo is easy! Just union over followers and following . file://localhost/Users/bob/src/mochi/bob/statebox_qconsf_2011-20416/slides.html 29/62

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend