Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

43
Database Techniek Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Transcript of Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Page 1: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Database TechniekDatabase Techniek

Lecture 5:

Concurrency Control

(Chapter 14/16)

Page 2: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

ScheduleSchedule

Lecture 4 (last week, 01.03.2007)

Basic Concepts of Transactions (Chapter 13/15)

Concurrency Control (Chapter 14/16)

Lecture 5 (today, 07.03.2007):

Practicum: Assignment 3 SQL Implementation, meeting the developer

Lecture 6 (next week, 14.03.2007):

XML Databases

Lecture 7 (20.03.2006):

Page 3: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Lecture 5: Concurrency ControlLecture 5: Concurrency Control

Lock-Based Protocols Timestamp-Based Protocols Validation-Based Protocols Multiple Granularity Multiversion Schemes Deadlock Handling Insert and Delete Operations Weak Levels of Consistency

Page 4: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Lecture 5: Concurrency Control (cont.)Lecture 5: Concurrency Control (cont.)

Previous block : Isolation is a fundamental property of transactions

“Real life”: Transactions run concurrently

=> Isolation is no longer preserved

Solution: Serializability Notion of correctness (checked a-posteori)

How : Concurrency control Management of concurrent transactions

A-priori assurance of correctness: ensure serializability

Ignoring failures ( next week: failure recovery)

Page 5: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Lock-Based ProtocolsLock-Based Protocols

Ensure serializability by allowing only mutual exclusive access to data items

A lock is a mechanism to control concurrent access to a data item

Data items can be locked in two modes :

1. exclusive (X) mode. Data item can be both read as well as written. X-lock is requested using lock-X instruction.

2. shared (S) mode. Data item can only be read. S-lock is requested using lock-S instruction.

Lock requests are made to concurrency-control manager. Transaction can proceed only after request is granted.

Page 6: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Lock-Based Protocols (Cont.)Lock-Based Protocols (Cont.)

Lock-compatibility matrix

A transaction may be granted a lock on an item if the requested lock is compatible with locks already held on the item by other transactions.

Any number of transactions can hold shared locks on an item, but if any transaction holds an exclusive on the item no other transaction may hold any lock on the item.

If a lock cannot be granted, the requesting transaction is made to wait till all incompatible locks held by other transactions have been released. The lock is then granted.

Page 7: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Lock-Based Protocols (Cont.)Lock-Based Protocols (Cont.)

Example of transactions performing locking: start with A=100, B=200

Locking as such is not sufficient to guarantee serializability Allows inconsistent reads

T1 T2

lock-X(B);

read(B);

B:=B-50; lock-S(A);

write(B); read (A);

unlock(B); unlock(A);

lock-X(A); lock-S(B);

read(A); read (B);

A:=A+50; unlock(B);

write(A); display(A+B).

unlock(A).

A+B=300

A+B=300

A+B=250

A locking protocol is a set of rules followed by all transactions while requesting and releasing locks. Locking protocols restrict the set of possible schedules.

Page 8: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Lock-Based Protocols (Cont.)Lock-Based Protocols (Cont.)

T3

lock-X(B);

read(B);

B:=B-50;

write(B);

unlock(B);

lock-X(A);

read(A);

A:=A+50;

write(A);

unlock(A).

unlock(B);

A+B=300

A+B=300

A locking protocol is a set of rules followed by all transactions while requesting and releasing locks. Locking protocols restrict the set of possible schedules.

E.g.:

“Delay all unlocks until end of transaction”

Page 9: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Pitfalls of Lock-Based ProtocolsPitfalls of Lock-Based Protocols

Neither T3 nor T4 can make progress — executing lock-S(B) causes T4 to wait for T3 to release its lock on B, while executing lock-X(A) causes T3 to wait for T4 to release its lock on A.

Such a situation is called a deadlock.

To handle a deadlock one of T3 or T4 must be rolled back and its locks released.

T3 T4

lock-X(B);

read(B);

B:=B-50; lock-S(A);

write(B); read (A);

lock-X(A); lock-S(B);

A+B=300

Waiting for T4 to unlock A

Waiting for T3 to unlock B

Page 10: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Pitfalls of Lock-Based Protocols (Cont.)Pitfalls of Lock-Based Protocols (Cont.)

The potential for deadlock exists in most locking protocols. Deadlocks are a necessary evil. Later: deadlock handling (prevention & recovery)

Starvation (“life-lock”) is also possible if concurrency control manager is badly designed. For example: A transaction may be waiting for an X-lock on an item, while a sequence of

other transactions request and are granted an S-lock on the same item.

The same transaction is repeatedly rolled back due to deadlocks.

Concurrency control manager can be designed to prevent starvation. E.g.: grant locks in order of requests

Page 11: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

The Two-Phase Locking ProtocolThe Two-Phase Locking Protocol

This is a protocol which ensures conflict-serializable schedules.

Phase 1: Growing Phase transaction may obtain locks

transaction may not release locks

Phase 2: Shrinking Phase transaction may release locks

transaction may not obtain locks

2PL assures serializability

Transactions can be serialized in the order of their lock points (i.e. the

point where a transaction acquired its final lock).

Page 12: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

The Two-Phase Locking Protocol (Cont.)The Two-Phase Locking Protocol (Cont.)

Partial Schedule Under Two-Phase Locking

Page 13: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

The Two-Phase Locking Protocol (Cont.)The Two-Phase Locking Protocol (Cont.)

Two-phase locking does not ensure freedom from deadlocks Later: deadlock prevention

Cascading roll-back is possible under normal two-phase locking

Stricter: Strict two-phase locking:

Hold all exclusive locks until commit/abort

Avoids cascading roll-back => recoverable

Even stricter: Rigorous two-phase locking:

Hold all locks until commit/abort

Transactions can be serialized in the order in which they commit

Page 14: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

The Two-Phase Locking Protocol (Cont.)The Two-Phase Locking Protocol (Cont.)

T8 T9

read(a1);

read(a2);

read(an);

write(a1);

read(a1);

read(a2);

display(a1 + a2);

Page 15: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

The Two-Phase Locking Protocol (Cont.)The Two-Phase Locking Protocol (Cont.)

T8 T9

lock-X(a1); read(a1);

lock-S(a2); read(a2);

… …

lock-S(an); read(an);

write(a1);

unlock(a1);

unlock(a2); lock-S(a1); read(a1);

… lock-S(a2); read(a2);

unlock(an); display(a1 + a2);

unlock(a1);

unlock(a2);

Page 16: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Lock ConversionsLock Conversions

Two-phase locking with lock conversions:

– First Phase: can acquire a lock-S on item

can acquire a lock-X on item

can convert a lock-S to a lock-X (upgrade)

– Second Phase: can release a lock-S

can release a lock-X

can convert a lock-X to a lock-S (downgrade)

This protocol assures serializability. But still relies on the programmer

to insert the various locking instructions.

T8 T9

lock-S(a1); lock-S(a1);

lock-S(a2); lock-S(a2);

lock-S(an); unlock(a1);

upgrade(a1); unlock(a2);

Page 17: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Automatic Acquisition of LocksAutomatic Acquisition of Locks

A transaction Ti issues the standard read/write instruction, without

explicit locking calls.

The operation read(D) is processed as:

if Ti has a lock on D

then

read(D)

else

begin

if necessary wait until no other

transaction has a lock-X on D

grant Ti a lock-S on D

read(D) end

Page 18: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Automatic Acquisition of Locks (Cont.)Automatic Acquisition of Locks (Cont.)

write(D) is processed as:

if Ti has a lock-X on D

then write(D) else begin if necessary wait until no other trans. has any lock on D

if Ti has a lock-S on D then upgrade lock on D to lock-X else grant Ti a lock-X on D

write(D) end All locks are released after commit or abort

Page 19: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

The Two-Phase Locking Protocol (Cont.)The Two-Phase Locking Protocol (Cont.)

Most (commercial) database systems implement either strict or rigorous 2PL (with lock conversion).

There can be conflict serializable schedules that cannot be obtained if two-phase locking is used.

However, in the absence of extra information (e.g., ordering of access to data), two-phase locking is needed for conflict serializability in the following sense:

Given a transaction Ti that does not follow two-phase locking, we can find a transaction Tk that uses two-phase locking, and a schedule for Ti and Tk that is not conflict serializable.

Page 20: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Graph-Based ProtocolsGraph-Based Protocols

Graph-based protocols are an alternative to two-phase locking

Impose a partial ordering on the set D = {d1, d2 ,..., dh} of all data items.

If di dk then any transaction accessing both di and

dk must access di before accessing dk.

Implies that the set D may now be viewed as a directed acyclic graph, called a database graph.

The tree-protocol is a simple kind of graph protocol.

Page 21: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Tree ProtocolTree Protocol

Only exclusive locks are allowed.

The first lock by Ti may be on any data item.

Subsequently, a data Q can be locked by Ti only if the parent of Q is currently locked by Ti.

Data items may be unlocked at any time.

Once unlocked, a data item cannot be relocked by the same transaction.

Page 22: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Tree Protocol (Cont.)Tree Protocol (Cont.)

Ensures conflict serializability (like 2PL) (+)

Is deadlock-free => no rollbacks are required (better than 2PL) (++)

Unlocking may occur earlier than in 2PL shorter waiting times, and increase in concurrency (++)

the abort of a transaction can still lead to cascading rollbacks (--)

early unlocking allows non-recoverable schedules (--)

However, a transaction may have to lock non-used data items increased locking overhead, and additional waiting time (--)

potential decrease in concurrency (--)

Schedules not possible under two-phase locking are possible under tree protocol, and vice versa.

Page 23: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Serializable Schedule Under the Tree ProtocolSerializable Schedule Under the Tree Protocol

Page 24: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Timestamp-Based ProtocolsTimestamp-Based Protocols

Each transaction is issued a timestamp when it enters the system.

If an old transaction Ti has timestamp TS(Ti), a new transaction Tk is

assigned timestamp TS(Tj) such that TS(Ti) < TS(Tk).

The protocol manages concurrent execution such that the timestamps determine the serializability order.

In order to assure such behavior, the protocol maintains for each data item Q two timestamp values:

W-timestamp(Q) is the largest timestamp of any transaction that executed write(Q) successfully.

R-timestamp(Q) is the largest timestamp of any transaction that executed read(Q) successfully.

Page 25: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

The timestamp ordering protocol ensures that any conflicting read and write operations are executed in timestamp order.

Suppose a transaction Ti issues a read(Q)

1. If TS(Ti) W-timestamp(Q), then Ti needs to read a value of Q that was already overwritten. Hence, the read operation is rejected, and Ti is rolled back.

2. If TS(Ti) W-timestamp(Q), then the read operation is executed, and R-timestamp(Q) is set to the maximum of R-timestamp(Q) and TS(Ti).

Timestamp-Based Protocols (Cont.)Timestamp-Based Protocols (Cont.)

Page 26: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Timestamp-Based Protocols (Cont.)Timestamp-Based Protocols (Cont.)

Suppose that transaction Ti issues write(Q).

1. If TS(Ti) < R-timestamp(Q), then the value of Q that Ti is producing was needed previously, and the system assumed that that value would never be produced. Hence, the write operation is rejected, and Ti is rolled back.

2. If TS(Ti) < W-timestamp(Q), then Ti is attempting to write an obsolete value of Q. Hence, this write operation is rejected, and Ti is rolled back.

3. Otherwise, the write operation is executed, and W-timestamp(Q) is set to TS(Ti).

Page 27: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Example Use of the ProtocolExample Use of the Protocol

A partial schedule for several data items for transactions withtimestamps 1, 2, 3, 4, 5

T1 T2 T3 T4 T5

read(Y) read(X)

write(Y)

read(Y)

write(Z) write(Z) write(X)

abort

read(X) write(Z) abort

read(Y)

write(Z) write(Z) abort

Page 28: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Correctness of Timestamp-Ordering ProtocolCorrectness of Timestamp-Ordering Protocol

Guarantees serializability since all the arcs in the precedence graph are of the form:

Thus, there will be no cycles in the precedence graph Ensures freedom from deadlock as no transaction ever waits Starvation of (long) transactions is possible Schedules may not be cascade-free, not even recoverable

Schedules not possible under two-phase locking are possible under timestamp-ordering, and vice versa.

transactionwith smallertimestamp

transactionwith largertimestamp

Page 29: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Recoverability and Cascade FreedomRecoverability and Cascade Freedom

Problem with timestamp-ordering protocol:

Suppose Ti aborts, but Tk has read a data item written by Ti

Then Tk must abort; if Tk had been allowed to commit earlier, the schedule is not recoverable.

Further, any transaction that has read a data item written by Tk must abort

This can lead to cascading rollback --- that is, a chain of rollbacks

Solution: A transaction is structured such that its writes are all performed at the end

of its processing

All writes of a transaction form an atomic action; no transaction may execute while a transaction is being written

A transaction that aborts is restarted with a new timestamp

Page 30: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Thomas’ Write RuleThomas’ Write Rule

Modified version of the timestamp-ordering protocol in which obsolete write operations may be ignored under certain circumstances.

Suppose transaction Ti attempts to write data item Q:

If TS(Ti) < W-timestamp(Q), then Ti is attempting to write an

obsolete value of Q. Hence, rather than rolling back Ti as the

timestamp ordering protocol would have done, this write operation can be ignored.

Otherwise this protocol is the same as timestamp ordering.

Thomas' Write Rule allows greater potential concurrency.

Unlike previous protocols, it allows some view-serializable

schedules that are not conflict-serializable.

Page 31: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Validation-Based ProtocolValidation-Based Protocol

Locking is significant overhead in (mainly) read-only transactions

Alternative: optimistic concurrency control: Execute fully w/o locks and hope everything goes well

Execution of transaction Ti is done in three phases.

1. Read and execution phase: Ti writes only to temporary local variables

2. Validation phase: Ti performs a “validation test” to determine if local variables can be written without violating serializability.

3. Write phase: If Ti is validated, the updates are applied to the database; otherwise, Ti is rolled back.

Each transaction must go through the three phases in that order

Phases of concurrent transactions can be interleaved

Page 32: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Validation-Based Protocol (Cont.)Validation-Based Protocol (Cont.)

Each transaction Ti has 3 timestamps

1. Start(Ti): the time when Ti started its execution

2. Validation(Ti): the time when Ti entered its validation phase

3. Finish(Ti): the time when Ti finished its write phase

Serializability order is determined by Validation(Ti):

TS(Ti) = Validation(Ti)

Protocol is useful if probability of conflicts is low gives greater degree of concurrency

serializability order is not pre-decided

relatively less transactions will have to be rolled back

Ensures cascadelessness => recoverability

Starvation is possible

Page 33: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Validation Test for Transaction Validation Test for Transaction TTkk

If for all Ti with TS(Ti) < TS(Tk) either one of the following condition holds:

finish(Ti) < start(Tk)

start(Tk) < finish(Ti) < validation(Tk) and the set of data items written by Ti does not intersect with the set of data items read by Tk.

then validation succeeds and Tk can be committed. Otherwise, validation fails and Tk is aborted.

Justification: Either first condition is satisfied, and there is no overlapped execution, or second condition is satisfied and

1. the writes of Tk do not affect reads of Ti since they occur after Ti

has finished its reads.

2. the writes of Ti do not affect reads of Tk since Tk does not read

any item written by Ti.

Page 34: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Schedule Produced by ValidationSchedule Produced by Validation

Example of schedule produced using validation

T14 T15

read(B)read(B)B:- B-50read(A)A:- A+50

read(A)(validate)display (A+B)

(validate)write (B)write (A)

Page 35: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Deadlock HandlingDeadlock Handling

Consider the following two transactions:

T1: write (X) T2: write(Y)

write(Y) write(X)

Schedule with deadlockT1 T2

lock-X on Xwrite (X)

lock-X on Ywrite (X) wait for lock-X on X

wait for lock-X on Y

Page 36: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Deadlock Handling (Cont.)Deadlock Handling (Cont.)

System is deadlocked if there is a set of transactions such that every transaction in the set is waiting for another transaction in the set.

Two principle methods for dealing with deadlocks:

1. Deadlock prevention protocols

Ensure that the system will never enter into a deadlock state

2. Deadlock detection and deadlock recovery schemes

Allow the system to enter a deadlock state

(Try to) detect the deadlock, then (try to) recover

Page 37: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Deadlock Prevention StrategiesDeadlock Prevention Strategies

Use locking:

Require that each transaction locks all its data items before it begins execution (predeclaration). Often hard to predict in advance which data item will be needed

Long-term lock limit concurrency

Impose partial ordering of all data items and require that a transaction can lock data items only in the order specified by the partial order (graph-based protocol).

Page 38: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

More Deadlock Prevention StrategiesMore Deadlock Prevention Strategies

Use timestamps (for deadlock prevention only!):

wait-die scheme — non-preemptive Older transactions may wait for younger ones to release data items.

Younger transactions never wait for older ones; they are rolled back (die) instead.

A transaction may die several times before acquiring needed data item.

wound-wait scheme — preemptive Older transaction wounds (forces rollback of) younger transaction instead of

waiting for it.

Younger transactions may wait for older ones.

May be fewer rollbacks than wait-die scheme.

Page 39: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Deadlock prevention (Cont.)Deadlock prevention (Cont.)

Both wait-die and wound-wait schemes avoid starvation: A rolled back transactions is restarted with its original timestamp

Older transactions thus have precedence over newer ones

Both schemes may suffer from unnecessary rollbacks

Timeout-Based Schemes : A transaction waits for a lock only for a specified amount of time.

After that, the wait times out and the transaction is rolled back.

Thus deadlocks are not possible

Simple to implement; but starvation is possible.

Also difficult to determine good value of the timeout interval.

Page 40: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Deadlock DetectionDeadlock Detection

Deadlocks can be described as a wait-for graph, which consists of a pair G = (V,E), V is a set of vertices (all the transactions in the system)

E is a set of edges; each element is an ordered pair Ti Tk.

If Ti Tk is in E, then there is a directed edge from Ti to Tk, implying that Ti is waiting for Tk to release a data item.

When Ti requests a data item currently being held by Tk, then the edge Ti Tk is inserted in the wait-for graph.

This edge is removed only when Tk is no longer holding a data item needed by Ti.

The system is in a deadlock state if and only if the wait-for graph has a cycle.

Must invoke a deadlock-detection algorithm periodically to look for cycles.

Page 41: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Deadlock Detection (Cont.)Deadlock Detection (Cont.)

Wait-for graph without a cycle Wait-for graph with a cycle

Page 42: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

Deadlock RecoveryDeadlock Recovery

When deadlock is detected :

1. Some transaction will have to be rolled back (made a victim) to break deadlock. Select that transaction as victim that will incur “minimum cost”.

2. Rollback -- determine how far to roll back transaction Simple but expensive: Total rollback:

Abort the transaction and then restart it.

Cheaper but difficult: Partial rollback:

Roll back transaction only as far as necessary to break deadlock.

3. Starvation happens if same transaction is always chosen as victim. Include the number of rollbacks in the cost factor to avoid starvation

Page 43: Database Techniek Lecture 5: Concurrency Control (Chapter 14/16)

End of LectureEnd of Lecture