bloom using disorderly programming to build eventually
play

Bloom: Using disorderly programming to build eventually- consistent - PowerPoint PPT Presentation

Bloom: Using disorderly programming to build eventually- consistent distributed systems Bill Marczak UC Berkeley Why is dist. programming hard? Why is dist. programming hard? Concurrency Why is dist. programming hard? Concurrency


  1. Bloom: Using disorderly programming to build eventually- consistent distributed systems Bill Marczak UC Berkeley

  2. Why is dist. programming hard?

  3. Why is dist. programming hard? ● Concurrency

  4. Why is dist. programming hard? ● Concurrency ● Asynchrony ● Delay ● Re-ordering ● Batching

  5. Why is dist. programming hard? ● Concurrency ● Asynchrony ● Delay ● Re-ordering ● Batching ● Partial failure

  6. Why is dist. programming hard? ● Concurrency ● Asynchrony ● Delay ● Re-ordering ● Batching ● Partial failure Non-determinism

  7. State of the art ● “Strong consistency” (e.g., 2PC, Paxos) ● Global sync ● High price ● Prohibit interleavings; guaranteed consistency

  8. State of the art ● “Strong consistency” (e.g., 2PC, Paxos) ● Global sync ● High price ● Prohibit interleavings; guaranteed consistency ● “Loose” (eventual) consistency ● Write program to avoid sync ● Apply “ad-hoc genius”

  9. State of the art ● “Strong consistency” (e.g., 2PC, Paxos) ● Global sync ● High price ● Prohibit interleavings; guaranteed consistency ● “Loose” (eventual) consistency ● Write program to avoid sync ● Apply “ad-hoc genius”

  10. Bloom ● New language + analysis to check for consistency (confluence) ● Internal DSL in Ruby

  11. Bloom ● New language + analysis to check for consistency (confluence) ● Internal DSL in Ruby ● Why is this in the DB track? ● Uses intuition from Datalog – recursive SQL – FO[LFP] ● “Disorderly evaluation”: rule-based language; set abstraction

  12. Outline ● Flavor of BLOOM: Shopping cart ● Static analysis ● A better shopping cart

  13. Bloom rules collection op collection expr table Default persist scratch Default delete channel Remote scratch

  14. Bloom rules collection op collection expr table Default persist <= Derive scratch Default delete <+ Insert channel Remote scratch <- Delete <~ Send

  15. Bloom rules collection op collection expr table Default persist map <= Derive scratch Default delete filter <+ Insert channel Remote scratch join (*) <- Delete not include <~ Send group ...

  16. Operational Semantics setup: scratches emptied, network messages placed in channels

  17. Operational Semantics setup: scratches emptied, network messages placed in channels logic: Bloom <= rules evaluated until fixpoint

  18. Operational Semantics setup: scratches emptied, network messages placed in channels logic: Bloom <= rules evaluated until fixpoint transition: items derived by <+ and <- inserted/deleted from collections, items derived by <~ sent

  19. Shopping cart ● Insert & delete items ● Check out ● Receive summary server client client

  20. Shopping cart ● Abstract cart protocol (messages exchanged between client & server) ● Concrete implementation of cart server ● Abstract key/value store ● Concrete key/value store

  21. Abstract cart protocol module CartProtocol state do end end

  22. Abstract cart protocol module CartProtocol state do end end

  23. Abstract cart protocol module CartProtocol state do end end

  24. Abstract cart protocol module CartProtocol state do channel :action_msg, [:@server, :client, :reqid] => [:item, :action] end end

  25. Abstract cart protocol module CartProtocol state do channel :action_msg, [:@server, :client, :reqid] => [:item, :action] end end

  26. Abstract cart protocol module CartProtocol state do channel :action_msg, [:@server, :client, :reqid] => [:item, :action] end end

  27. Abstract cart protocol module CartProtocol state do channel :action_msg, [:@server, :client, :reqid] => [:item, :action] server: the IP address of the cart server client: the IP address of the cart client reqid: a unique identifier for the request item: the shopping cart item to modify action: add or delete from cart end end

  28. Abstract cart protocol at sign “@” indicates location of tuple module CartProtocol state do channel :action_msg, [:@server, :client, :reqid] => [:item, :action] server: the IP address of the cart server client: the IP address of the cart client reqid: a unique identifier for the request item: the shopping cart item to modify right arrow indicates action: add or delete from cart functional dependency end end

  29. Abstract cart protocol module CartProtocol state do channel :action_msg, [:@server, :client, :reqid] => [:item, :action] channel :checkout_msg, [:@server, :client, :reqid] end end

  30. Abstract cart protocol module CartProtocol state do channel :action_msg, [:@server, :client, :reqid] => [:item, :action] channel :checkout_msg, [:@server, :client, :reqid] channel :response_msg, [:@client, :server, :item] => [:cnt] end end

  31. Shopping cart ● Abstract cart protocol (messages exchanged between client & server) ● Concrete implementation of cart server ● Abstract key/value store ● Concrete key/value store

  32. Abstract KVS module KVSProtocol state do end end

  33. Abstract KVS module KVSProtocol state do interface input, :kvput, [:key] => [:value] end end

  34. Abstract KVS module KVSProtocol state do interface input, :kvput, [:key] => [:value] interface input, :kvget, [:reqid] => [:key] end end

  35. Abstract KVS module KVSProtocol state do interface input, :kvput, [:key] => [:value] interface input, :kvget, [:reqid] => [:key] interface output, :kvget_response, [:reqid] => [:key, :value] end end

  36. Shopping cart ● Abstract cart protocol (messages exchanged between client & server) ● Concrete implementation of cart server ● Abstract key/value store ● Concrete key/value store

  37. Concrete Server module DestructiveCart include CartProtocol include KVSProtocol end

  38. Concrete Server module DestructiveCart include CartProtocol include KVSProtocol bloom :queueing do end end

  39. Concrete Server module DestructiveCart include CartProtocol include KVSProtocol bloom :queueing do kvget <= action_msg {|a| [a.reqid, a.client] } end end

  40. Concrete Server module DestructiveCart include CartProtocol include KVSProtocol bloom :queueing do kvget <= action_msg {|a| [a.reqid, a.client] } kvput <= action_msg do |a| if a.action == "Add" and not kvget_response .map{|b| b.key}.include? a.client [a.client, Array.new.push(a.item)] end end end end

  41. Concrete Server module DestructiveCart include CartProtocol include KVSProtocol bloom :queueing do kvget <= action_msg {|a| [a.reqid, a.client] } kvput <= action_msg do |a| if a.action == "Add" and not kvget_response .map{|b| b.key}.include? a.client [a.client, Array.new.push(a.item)] end end temp :old_state <= ( kvget_response * action_msg ).pairs(:key => :client) kvput <= old_state do |b, a| if a.action == "Add" [a.client, (b.value.clone.push(a.item))] elsif a.action == "Del" [a.client, delete_one(b.value, a.item)] end end end end

  42. Concrete Server module DestructiveCart include CartProtocol include KVSProtocol bloom :queueing do kvget <= action_msg {|a| [a.reqid, a.client] } kvput <= action_msg do |a| if a.action == "Add" and not kvget_response .map{|b| b.key}.include? a.client [a.client, Array.new.push(a.item)] end end temp :old_state <= ( kvget_response * action_msg ).pairs(:key => :client) kvput <= old_state do |b, a| if a.action == "Add" [a.client, (b.value.clone.push(a.item))] elsif a.action == "Del" [a.client, delete_one(b.value, a.item)] end end end bloom :finish do kvget <= checkout_msg{|c| [c.reqid, c.client] } temp :lookup <= ( kvget_response * checkout_msg ).pairs(:key => :client) end end

  43. Shopping cart ● Abstract cart protocol (messages exchanged between client & server) ● Concrete implementation of cart server ● Abstract key/value store ● Concrete key/value store

  44. Concrete KVS module BasicKVS include KVSProtocol end

  45. Concrete KVS module BasicKVS include KVSProtocol state do table :kvstate, [:key] => [:value] end end

  46. Concrete KVS module BasicKVS include KVSProtocol state do table :kvstate, [:key] => [:value] end bloom :mutate do kvstate <+ kvput {|s| [s.key, s.value]} kvstate <- (kvstate * kvput ).lefts(:key => :key) end end

  47. Concrete KVS module BasicKVS include KVSProtocol state do table :kvstate, [:key] => [:value] end bloom :mutate do kvstate <+ kvput {|s| [s.key, s.value]} kvstate <- (kvstate * kvput ).lefts(:key => :key) end bloom :get do temp :getj <= ( kvget * kvstate).pairs(:key => :key) kvget_response <= getj { |g, t| [g.reqid, t.key, t.value] } end end

  48. Ad-hoc genius analysis

  49. Ad-hoc genius analysis action_msg checkout_msg client reqid item action client reqid “Alice” 1 “2TB HD” “add” “Alice” 4 “Alice” 2 “2TB HD” “del” “Alice” 3 “128GB SSD” “add”

  50. Execution 1

  51. Execution 1 action_msg client reqid item action “Alice” 1 “2TB HD” “add”

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