Slide 1

Slide 1 text

Distributed Programming in Argus Barbara Liskov Papers We Love SF - January 2017

Slide 2

Slide 2 text

Caitie McCaffrey @caitie Distributed Systems Engineer CaitieM.com

Slide 3

Slide 3 text

1988

Slide 4

Slide 4 text

“Technological advances have made it cost effective to construct large systems from collections of computer connected via networks. To support such systems, there is a growing need for effective way to organize and maintain distributed programs” Guardians and Actions: Linguistic Support for Robust, Distributed Programs

Slide 5

Slide 5 text

Atomicity RPC &

Slide 6

Slide 6 text

Guardians and Actions: Linguistic Support for Robust, Distributed Programs “We believe that the most desirable form of communication is the paired send and reply” Remote Procedure Calls

Slide 7

Slide 7 text

Guardians and Actions: Linguistic Support for Robust, Distributed Programs “We believe the form of communication that is needed is remote procedure call with at-most-once semantics” Remote Procedure Calls

Slide 8

Slide 8 text

Argus RPC In

Slide 9

Slide 9 text

“a special kind of abstract object whose purpose is to encapsulate a resource” Guardians Distributed Programming in Argus

Slide 10

Slide 10 text

“it permits its resource to be accessed by means of special procedures, called handlers” Handlers Distributed Programming in Argus

Slide 11

Slide 11 text

Argus Banking with

Slide 12

Slide 12 text

Branch Guardian Open (a: account_number) Close (a: account_number) Deposit (a: account_number, amt: int) Withdraw (a: account_number, amt: int) Total() Handlers

Slide 13

Slide 13 text

Branch A Branch B Account 123 : $100 Account 456: $50 Account 789: $250 Open (123) Deposit(123, 100) Open (456) Deposit(456, 50) Open (789) Deposit(789, 250)

Slide 14

Slide 14 text

Atomicity RPC &

Slide 15

Slide 15 text

“An adequate language must provide a modular, reasonably automatic method for achieving consistency ” Atomicity Distributed Programming in Argus

Slide 16

Slide 16 text

Guardians and Actions: Linguistic Support for Robust, Distributed Programs “Our solution to the problem of maintaining consistent distributed data in the face of concurrent, potentially interfering activities, and in the face of system failures such as node crashes and network disruptions while these activities are running is to make activities atomic” Atomicity

Slide 17

Slide 17 text

Argus Atomicity In

Slide 18

Slide 18 text

Serializable Actions Total (abort or commit)

Slide 19

Slide 19 text

Atomic Abstract Data Type Atomic Objects Argus Provides: atomic arrays, records, variants, characters, and integers

Slide 20

Slide 20 text

Read Write Lock Locking Rules Multiple Readers are Allowed Readers Exclude Writers Writer Exclude other Writers & Readers

Slide 21

Slide 21 text

Distributed Programing in Argus “Computation in Argus starts as a top action at some guardian. The computation spreads to other guardians by means of handler calls. Execution of a handler call may cause some objects at the handler’s guardian to be modified, and may in turn lead to further calls”

Slide 22

Slide 22 text

Argus Banking with

Slide 23

Slide 23 text

Branch A Branch B Account 123 : $100 Account 456: $50 Account 789: $250 Transfer( amt: int, from: account_number, to: account_number)

Slide 24

Slide 24 text

Branch B Account 789: $250 Branch A Account 123 : $100 Account 456: $50 SubAction: Deposit (123, 50) Transfer Action SubAction: Withdraw(789, 50) Transfer Deposit Withdraw

Slide 25

Slide 25 text

Branch B Account 789: $250 Branch A Account 123 : $100 Account 456: $50 SubAction: Deposit (123, 50) Transfer Action SubAction: Withdraw(789, 50) Transfer Deposit Withdraw enter topaction coenter action branchA.Deposit(123, 50) action branchB.Withdraw(789, 50) end end

Slide 26

Slide 26 text

Branch B Account 789: $250 Branch A Account 123 : $100 Account 456: $50 Deposit (123, 50) Transfer Action Withdraw(789, 50)

Slide 27

Slide 27 text

Branch B Account 789: $250 Branch A Account 123 : $100 Account 456: $50 Deposit (123, 50) Transfer Action Withdraw(789, 50) Account 123 : $150 Account 789: $200 V1 V1

Slide 28

Slide 28 text

Branch B Account 789: $250 Branch A Account 123 : $100 Account 456: $50 Deposit Success Transfer Action Withdraw Success Account 123 : $150 Account 789: $200 V1 V1

Slide 29

Slide 29 text

Branch B Account 789: $250 Branch A Account 123 : $100 Account 456: $50 Transfer Action Account 123 : $150 Account 789: $200 V1 V1 Commit Top Level Action 2PC Transfer Deposit Withdraw

Slide 30

Slide 30 text

Branch B Branch A Prepare Transfer Action Prepare Commit Top Level Action 2PC: Phase 1 V1 V1 Account 789: $250 Account 123 : $100 Account 456: $50 Account 123 : $150 Account 789: $200

Slide 31

Slide 31 text

Branch B Branch A Prepare Success Transfer Action Prepare Success Commit Top Level Action 2PC: Phase 1 V1 V1 Account 789: $250 Account 123 : $100 Account 456: $50 Account 123 : $150 Account 789: $200

Slide 32

Slide 32 text

Branch B Branch A Account 456: $50 Commit Transfer Action Commit Account 123 : $150 Account 789: $200 Commit Top Level Action 2PC : Phase 2

Slide 33

Slide 33 text

Branch B Branch A Account 456: $50 Commit Success Transfer Action Commit Success Account 123 : $150 Account 789: $200 Commit Top Level Action 2PC : Complete

Slide 34

Slide 34 text

Argus Banking with

Slide 35

Slide 35 text

Branch B Account 789: $200 Branch A Account 123 : $150 Account 456: $50 SubAction: Deposit (123, 100) Transfer Action SubAction: Withdraw(456, 100) Transfer Deposit Withdraw

Slide 36

Slide 36 text

Branch B Account 789: $200 Branch A Account 123 : $150 Account 456: $50 Deposit (123, 100) Transfer Action Withdraw(456, 100)

Slide 37

Slide 37 text

Branch B Account 789: $200 Branch A Account 123 : $150 Account 456: $50 Deposit Success Transfer Action Withdraw Abort V1 Account 123 : $250 Transfer Deposit Withdraw

Slide 38

Slide 38 text

Branch B Account 789: $200 Branch A Account 123 : $150 Account 456: $50 Abort Deposit Transfer Action V1 Account 123 : $250 Abort Top Level Action 2PC : Abort

Slide 39

Slide 39 text

Branch B Account 789: $200 Branch A Account 123 : $150 Account 456: $50 Deposit Aborted Transfer Action Abort Top Level Action 2PC : Abort

Slide 40

Slide 40 text

Branch B Account 789: $200 Branch A Account 123 : $150 Account 456: $50 Transfer Action

Slide 41

Slide 41 text

Sub-Actions “Argus allows actions to be nested; thus an action can have one or more sub-actions“ Distributed Programming in Argus Transfer Deposit Withdraw

Slide 42

Slide 42 text

Sub-Actions Replicate Action Replica A Replica B

Slide 43

Slide 43 text

Sub-Actions Replicate Deposit Replica A Replica B Transfer Deposit Withdraw Replicate Withdraw Replica A Replica B

Slide 44

Slide 44 text

Sub-Actions Replicate Deposit Replica A Replica B Transfer Deposit Withdraw Replicate Withdraw Replica A Replica B

Slide 45

Slide 45 text

Sub-Actions Replicate Deposit Replica A Replica B Transfer Deposit Withdraw Replicate Withdraw Replica A Replica B

Slide 46

Slide 46 text

Sub-Actions Replicate Deposit Replica A Replica B Transfer Deposit Withdraw Replicate Withdraw Replica A Replica B Abort

Slide 47

Slide 47 text

Sub-Actions Replicate Deposit Replica A Replica B Transfer Deposit Withdraw Replicate Withdraw Replica A Replica B

Slide 48

Slide 48 text

Sub-Actions Replicate Deposit Replica A Replica B Transfer Deposit Withdraw Replicate Withdraw Replica A Replica B

Slide 49

Slide 49 text

Sub-Actions Replicate Deposit Replica A Replica B Transfer Deposit Withdraw Replicate Withdraw Replica A Replica B 2PC: Abort

Slide 50

Slide 50 text

Sub-Actions “Argus runs every handler call as a sub-action…this extra action ensures that calls have a zero or one semantics.“ Distributed Programming in Argus

Slide 51

Slide 51 text

What if Sub-Actions try to access the same atomic object?

Slide 52

Slide 52 text

What if Sub-Actions try to access the same atomic object?

Slide 53

Slide 53 text

Read Lock: All holders of write locks on x must be ancestors of S Write Lock: All holders of write locks on x must be ancestors of S. Locking Rules for Sub-Actions Distributed Programming in Argus

Slide 54

Slide 54 text

Commit: S’s parent acquires S’s lock on x. If S holds a write lock on x, then S’s version becomes S’s parent version Abort: S’s lock and version (if any) are discarded Version Management Rules for Sub Actions Distributed Programming in Argus

Slide 55

Slide 55 text

Sub Action Locking Account Balance Object $200 Value X Y Z 1.5% Interest 2% Interest Read Balance

Slide 56

Slide 56 text

Account Balance Object $200 V1 $203 Value X Y Z 1.5% Interest 2% Interest Read Balance X: Write Lock (V1) Sub Action Locking

Slide 57

Slide 57 text

Account Balance Object $200 V1 $203 V2 $207.06 Value X Y Z 1.5% Interest 2% Interest Read Balance X: Write Lock (V1) Y: Write Lock (V2) Sub Action Locking

Slide 58

Slide 58 text

Account Balance Object $200 V1 $203 V2 $207.06 Value X Y Z W 1.5% Interest 2% Interest Read Balance .5% Interest X: Write Lock (V1) Y: Write Lock (V2) Z: Read Lock (V2) Sub Action Locking

Slide 59

Slide 59 text

Account Balance Object $200 V1 $203 V2 V3 $207.06 $208.10 Value X Y Z W 1.5% Interest 2% Interest Read Balance .5% Interest X: Write Lock (V1) Y: Write Lock (V2) Z: Read Lock (V2) W: Write Lock (V3) Sub Action Locking

Slide 60

Slide 60 text

Account Balance Object $200 V1 $203 X: Write Lock (V1) V2 V3 $207.06 $208.10 Value Y: Write Lock (V2) Z: Write Lock (V3) X Y Z W 1.5% Interest 2% Interest Read Balance .5% Interest Sub Action Locking

Slide 61

Slide 61 text

Account Balance Object $200 V1 $203 X: Write Lock (V1) V2 V3 $207.06 $208.10 Value Y: Write Lock (V3) X Y Z W 1.5% Interest 2% Interest Read Balance .5% Interest Sub Action Locking

Slide 62

Slide 62 text

Account Balance Object $200 V1 $203 X: Write Lock (V3) V2 V3 $207.06 $208.10 Value X Y Z W 1.5% Interest 2% Interest Read Balance .5% Interest Sub Action Locking

Slide 63

Slide 63 text

Account Balance Object $200 V1 $203 X: Write Lock (V3) V2 V3 $207.06 $208.10 Value Y: Write Lock (V3) Z: Write Lock (V3) X Y Z W 1.5% Interest 2% Interest Read Balance .5% Interest Sub Action Locking Two Phase Commit

Slide 64

Slide 64 text

Account Balance Object $208.10 Value X Y Z W 1.5% Interest 2% Interest Read Balance .5% Interest Sub Action Locking

Slide 65

Slide 65 text

Problems with Argus

Slide 66

Slide 66 text

“The concurrency that is built in to the mail system can lead to a number of deadlock situations” Guardians and Actions: Linguistic Support for Robust, Distributed Programs “As implemented most of the handlers can deadlock with other concurrent operations” Distributed Programming in Argus Deadlocks

Slide 67

Slide 67 text

Deadlocks “The programmer must think about deadlocks and starvation and implement the code to avoid them when possible" Distributed Programming in Argus

Slide 68

Slide 68 text

Blocking Calls “A new process is created to perform an incoming handler call …[so guardians can] have the ability to execute many request concurrently … if the guardian is running on a single-processor node, then only one process will be running at a time” Guardians and Actions: Linguistic Support for Robust, Distributed Programs

Slide 69

Slide 69 text

Blocking Calls “A new process is created to perform an incoming handler call …[so guardians can] have the ability to execute many request concurrently … if the guardian is running on a single-processor node, then only one process will be running at a time” Guardians and Actions: Linguistic Support for Robust, Distributed Programs Promises: linguistic support for efficient asynchronous procedure calls in distributed systems B. Liskov, L.Shrira 1988

Slide 70

Slide 70 text

So where do we go from here?

Slide 71

Slide 71 text

“Guardians allow programs to be decomposed into units of tightly coupled data and processing” Distributed Programming in Argus Guardians

Slide 72

Slide 72 text

Microservices

Slide 73

Slide 73 text

“Atomic actions are an important tool both for understanding what a system should do and for implementing it correctly” Distributed Programming in Argus

Slide 74

Slide 74 text

2014

Slide 75

Slide 75 text

Halo 4: Statistics Service

Slide 76

Slide 76 text

2015

Slide 77

Slide 77 text

2015 “We focus our study on the common use of feral or a pplication-level, mechanisms for maintaining database integrity”

Slide 78

Slide 78 text

2015

Slide 79

Slide 79 text

CRDT * Stolen from Chris Meiklejohn in practice

Slide 80

Slide 80 text

2012

Slide 81

Slide 81 text

2012 “ Spanner is the first system to distribute data at global scale and support externally-consistent distributed transaction”

Slide 82

Slide 82 text

2016

Slide 83

Slide 83 text

No content

Slide 84

Slide 84 text

Conclusion

Slide 85

Slide 85 text

Thank You! @caitie