2002 m. t. harandi and j. hou (modified: i. gupta) distributed transactions

29
2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

Upload: blaise-lindsey

Post on 19-Jan-2016

215 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Distributed Transactions

Page 2: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Distributed Transactions Distributed Transactions A transaction (flat or nested) that

invokes operations in several servers.

T

A

Y

Z

B

C

D

T

T1

T2

T11

T12

T21

T22

A

B

C

D

F

H

K

Flat Distributed Transaction Nested Distributed Transaction

X

Page 3: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Coordination in Distributed Transactions Coordination in Distributed Transactions Each server has a special participant process. Coordinator process

resides in one of the servers, talks to trans. and participants.

T

A

Y

Z

B

C

D

X

join

join

join

Coordinator Participant

Participant

Participant

T

CoordinatorOpen Transacton

TID

Close Transaction

Abort Transaction

ParticipantA

a.method (TID, )1

2

Join (TID, ref)

3

Coordinator & Participants The Coordination Process

Page 4: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Distributed banking transactionDistributed banking transaction

..

BranchZ

BranchX

participant

participant

C

D

Client

BranchY

B

A

participant join

join

join

T

a.withdraw(4);

c.deposit(4);

b.withdraw(3);

d.deposit(3);

openTransaction

b.withdraw(T, 3);

closeTransaction

T = openTransaction a.withdraw(4); c.deposit(4); b.withdraw(3); d.deposit(3);

closeTransaction

Note: the coordinator is in one of the servers, e.g. BranchX

Page 5: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Atomicity principle requires that either all the distributed operations of a transaction complete or all abort.

At some stage, client executes closeTransaction(). Now, atomicity requires that either all participants and the coordinator commit or all abort.

What problem statement is this?

I. Atomic Commit Problem I. Atomic Commit Problem

Page 6: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Atomic Commit ProtocolsAtomic Commit Protocols

Consensus, but its impossible!

So, assure safety in the implementation.

In a one-phase commit protocol, the coordinator communicates commit or abort to all participants until all acknowledge.

When a client/coordinator requests a commit, it does not allow a server to make a unilateral decision to abort a transaction.

A server may have to abort the transaction, for example, in the case of deadlock.

In a two-phase protocol First phase involves coordinator collecting commit or abort vote from

each participant.

Coordinator decides and multicasts result (any participant can abort its part of the transaction)

On receiving second phase message, participant commits

Page 7: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Operations for Two-Phase Commit ProtocolOperations for Two-Phase Commit Protocol

canCommit?(trans)-> Yes / NoCall from coordinator to participant to ask whether it can commit a transaction. Participant replies with its vote.

doCommit(trans) Call from coordinator to participant to tell participant to commit its part of a transaction.

doAbort(trans) Call from coordinator to participant to tell participant to abort its part of a transaction.

haveCommitted(trans, participant) Call from participant to coordinator to confirm that it has committed the transaction.

getDecision(trans) -> Yes / NoCall from participant to coordinator to ask for the decision on a transaction after it has voted Yes but has still had no reply after some delay. Used to recover from server crash or delayed messages.

Page 8: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

The two-phase commit protocolThe two-phase commit protocolPhase 1 (voting phase):

1. The coordinator sends a canCommit? request to each of the participants in the transaction.

2. When a participant receives a canCommit? request it replies with its vote (Yes or No) to the coordinator. Before voting Yes, it prepares to commit by saving objects in permanent storage. If the vote is No the participant aborts immediately.

Phase 2 (completion according to outcome of vote):3. The coordinator collects the votes (including its own).

(a) If there are no failures and all the votes are Yes the coordinator decides to commit the transaction and sends a doCommit request to each of the participants.

(b) Otherwise the coordinator decides to abort the transaction and sends doAbort requests to all participants that voted Yes.

4. Participants that voted Yes are waiting for a doCommit or doAbort request from the coordinator. When a participant receives one of these messages it acts accordingly and in the case of commit, makes a haveCommitted call as confirmation to the coordinator.

Recall that server maycrash

Page 9: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Communication in Two-Phase Commit ProtocolCommunication in Two-Phase Commit Protocol

canCommit?

Yes

doCommit

haveCommitted

Coordinator

1

3

(waiting for votes)

committed

done

prepared to commit

step

Participant

2

4

(uncertain)

prepared to commit

committed

statusstepstatus

To deal with server crashes

Each server saves information relating to the two-phase commit protocol in permanent storage. The information can be retrieved by a new server after a server crash.

To deal with canCommit? loss

The participant may decide to abort unilaterally after a timeout.

To deal with Yes/No loss, the coordinator aborts the transaction after a timeout (pessimistic!). It must annouce doAbort to those who sent in their votes.

To deal with doCommit loss

The participant may wait for a timeout, send a getDecision request (retries until reply received).

Page 10: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Two Phase Commit (2PC) Protocol Two Phase Commit (2PC) Protocol Coordinator Participant

Execute

• Precommit

Uncertain

•Send request to each participant

• Wait for replies (time out possible)

Commit

•Send COMMIT to each participant

Abort

•Send ABORT to each participant

Execute

• Precommit

• send YES to coordinator

• Wait for decision

Abort

•Send NO to coordinator

NOYES

request

not ready ready

All YES

Timeout or a NO

Commit

• Make transaction visible

Abort

COMMIT decision

CloseTrans()

ABORT decision

Page 11: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Each server is responsible for applying concurrency control to its objects.

Servers are collectively responsible for serial equivalence of operations.

Locks are held locally, and cannot be released until all servers involved in a transaction have committed or aborted.

Locks are retained during 2PC protocol

Since lock managers work independently, deadlocks are very likely.

II. Locks in Distributed Transactions II. Locks in Distributed Transactions

Page 12: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

The wait-for graph in a distributed set of transactions is held partially by each server

To find cycles in a distributed wait-for graph, we can use a central coordinator:

Each server reports updates of its wait-for graph

The coordinator constructs a global graph and checks for cycles

Centralized deadlock detection suffers from usual comm. overhead + bottleneck problems.

In edge chasing, servers collectively make the global wait-for graph and detect deadlocks :

Servers forward “probe” messages to servers in the edges of wait-for graph, pushing the graph forward, until cycle is found.

Distributed DeadlocksDistributed Deadlocks

Page 13: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Probes Transmitted to Detect DeadlockProbes Transmitted to Detect Deadlock

V

Held by

W

Waits forHeld by

Waitsfor

Waits for

Deadlockdetected

U

C

A

B

Initiation

W U V W

W U

W U V

Z

Y

X

Page 14: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Edge ChasingEdge Chasing

• Initiation: When a server S1 notes that a transaction T starts waiting for another transaction U, where U is waiting to access an object at another server S2, it initiates detection by sending <TU> to S2.

• Detection: Servers receive probes and decide whether deadlock has occurred and whether to forward the probes.

• Resolution: When a cycle is detected, a transaction in the cycle is aborted to break the deadlock.

• Phantom deadlocks=false detection of deadlocks that don’t actually exist

– Can happen if edge disappears after being chased but before deadlock is detected

Page 15: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Transaction PriorityTransaction Priority

• In order to ensure that only one transaction in a cycle is aborted, transactions are given priorities in such a way that all transactions are totally ordered.

• When a deadlock cycle is found, the transaction with the lowest priority is aborted. Even if several different servers detect the same cycle, only one transaction aborts.

• Transaction priorities can be used to limit probe messages to be sent only to lower prio. trans. and initiating probes only when higher prio. trans. waits for a lower prio. trans.

– Caveat: suppose edges were created in order 3->1, 1->2, 2->3. Deadlock never detected.

– Fix: whenever an edge is created, tell everyone about this edge. Detection happens at the first instance the deadlock is created.

Page 16: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

III. 2PC in Nested Transactions III. 2PC in Nested Transactions Each (sub)transaction has a coordinator

openSubTransaction(trans-id) subTrans-id

getStatus(trans-id) (committed / aborted / provisional)

Each sub-transaction starts after its parent and finishes before it.

When a sub-transaction finishes, it makes a decision to abort or provisionally commit. (Note that a provisional commit is not the same as being prepared – it is just a local decision and is not backed up on permanent storage.)

When the top-level transaction completes, it does a 2PC with its subs to decide to commit or abort.

Page 17: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Example 2PC in Nested Transactions Example 2PC in Nested Transactions

T

T1

T2

T11

T12

T21

T22

A

B

C

D

F

H

K

T

T1

T2

T11

T12

T21

T22

Nested Distributed Transaction

NoAbort

YesProvisional

YesProvisional

YesProvisional

Yes

Yes

Provisional

NoAbort

Bottom up decision in 2PC

Page 18: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

An Example of Nested TransactionAn Example of Nested Transaction

1

2

T11

T12

T22

T21

abort (at M)

provisional commit (at N)

provisional commit (at X)

aborted (at Y)

provisional commit (at N)

provisional commit (at P)

T

T

T

Page 19: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Information Held by Coordinators of Nested Transactions

Information Held by Coordinators of Nested Transactions

Coordinator oftransaction

Childtransactions

Participant Provisionalcommit list

Abort list

T T1, T2 yes T1, T12 T11, T2T1 T11, T12 yes T1, T12 T11T2 T21, T22 no (aborted) T2T11 no (aborted) T11T12, T21 T12 but not T21 T21, T12T22 no (parent aborted)T22

• When each sub-transaction was created, it joined its parent transaction.• The coordinator of each parent transaction has a list of its child sub-transactions.• When a nested transaction provisionally commits, it reports its status and the status of its descendants to its parent.• When a nested transaction aborts, it reports abort without giving any information about its descendants.• The top-level transaction receives a list of all sub-transactions, together with their status.

Page 20: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Hierarchic Two-Phase Commit Protocol forNested Transactions

Hierarchic Two-Phase Commit Protocol forNested TransactionscanCommit?(trans, subTrans) -> Yes / No

Call a coordinator to ask coordinator of child subtransaction whether it can commit a subtransaction subTrans. The first argument trans is the transaction identifier of top-level transaction. Participant replies with its vote Yes / No.

The coordinator of the top-level transaction sends canCommit? to the coordinators of its immediate child sub-transactions. The latter, in turn, pass them onto the coordinators of their child sub-transactions.

Each participant collects the replies from its descendants before replying to its parent.

T sends canCommit? messages to T1 (but not T2 which has aborted); T1 sends CanCommit? messages to T12 (but not T11).

If a coord. finds no subtrans. matching 2nd param, then it must have crashed, so it replies NO

Wasteful if coords. shared among subtrans. May take long.

Page 21: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Flat Two-Phase Commit Protocol for Nested Transactions

Flat Two-Phase Commit Protocol for Nested TransactionscanCommit?(trans, abortList) -> Yes / No

Call from coordinator to participant to ask whether it can commit a transaction. Participant replies with its vote Yes / No.

The coordinator of the top-level transaction sends canCommit? Messages to the coordinators of all sub-transactions in the provisional commit list (e.g., T1 and T12).

If the participant has any provisionally committed transactions that are descendants of the transaction with TID trans:

Check that they do not have any aborted ancestors in the abortList. Then prepare to commit.

Those with aborted ancestors are aborted.

Send a Yes vote to the coordinator.

If the participant does not have a provisionally committed descendent, it must have failed after it performed a provisional commit. Send a NO vote to the coordinator.

Page 22: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

IV. Transaction Recovery IV. Transaction Recovery Recovery is concerned with:

Object (data) durability: saved permanently

Failure Atomicity: effects are atomic even when servers crash

Recovery Manager’s tasks To save objects (data) on permanent storage for

committed transactions.

To restore server’s objects after a crash

To maintain and reorganize a recovery file for an efficient recovery procedure

Garbage collection in recovery file

Page 23: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

The Recovery File The Recovery File

Object Entries

Trans. Status

Intention List

Recovery File

T1: Prepared T2: Prepared T1: committed

Object Ref

Object Ref

Object Ref

Object Ref

Object Ref

name

valuesname

valuesname

values

name

values

name

values

……

Transaction Entries

Page 24: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Transaction T1 Transaction T2 balance = b.getBalance()

b.setBalance = (balance*1.1)

balance = b.getBalance()

b.setBalance(balance*1.1)

a.withdraw(balance* 0.1)

c.withdraw(balance*0.1)

Example: Recovery File Example: Recovery File

100 200 300a: b: c:

278c:a:

242b:

b: 220

80

A

100

B

200

C

300

A

80

B

220

T1: Preped <A, P1> <B, P2>

P0

B

242

T1: Commit

p3

C

278

T2: Preped <B, P4> <C, P6>

p5

p0 p1 p2 p3 p4 p5 p6 p7

•“Logging”=concatenation•Write entries at prepared-to-commit

and commit points•Writes at commit point are forced

Page 25: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Using the Recovery File after a CrashUsing the Recovery File after a Crash

• When a server recovers, it sets default initial values for objects and then hands over to recovery manager.

• Recovery manager should apply only those updates that are for committed transactions. Prepared-to-commit transactions are aborted.

• Recovery manager has two options:1. Read the recovery file forward and update object values

2. Read the recovery file backwards and update object values

• Advantage: each object updated at most once

• Server may crash during recovery• Recovery needs to be idempotent

• Needs save to volatile storage, difficult to achieve (but happens very rarely)

Page 26: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

The Recovery File for 2PC The Recovery File for 2PC

Object Entries

Trans. Status

Intention List

T1: Prepared T2: Prepared T1: committed

Object Ref

Object Ref

Object Ref

Object Ref

Object Ref

name

valuesname

valuesname

values

name

values

name

values

……

Transaction Entries

Coordination Entries

Coor’d: T1

Participants list. Status.

Par’pant: T1

Coordinator. Status.

Par’pant: T1

Coordinator. Status.

Coor’d: T2

Participants list. Status.

Page 27: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

SummarySummary

• Distributed Transactions– More than one server process (each managing different set of

objects)

– One server process marked out as coordinator

– Atomic Commit: 2PC

– Deadlock detection: Edge chasing

– 2PC commit for nested trans.

– Transaction Recovery: Recovery file

Page 28: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

Optional SlidesOptional Slides

Page 29: 2002 M. T. Harandi and J. Hou (modified: I. Gupta) Distributed Transactions

2002 M. T. Harandi and J. Hou (modified: I. Gupta)

A Different Kind of Edge ChasingA Different Kind of Edge Chasing

T U

Wait forHeld by

Held byWait for

B

V Held byWait for

A C

X

Y

Z

X: U V

Y: T U

Z: V T

LOCAL Wait-for GRAPHS

T U

Wait forHeld by

Held byWait forB

V Held byWait for

A C

X

Y

Z

U

V

X: U V

T U

V

Y: T U VZ: T U V T

deadlock detected