ADB Chapter 4
ADB Chapter 4
1
Outline
Databases Concurrency Control
1. Purpose of Concurrency Control
2. Two-Phase locking
3. Limitations of CCMs
4. Index Locking
6. Lock Granularity
2
Database Concurrency Control
• Example:
– In concurrent execution environment if T1 conflicts with T2 over a data item A, then the
existing concurrency control decides if T1 or T2 should get item A and if the other
transaction is rolled-back or waits.
3
Database Concurrency Control
Locking Techniques
• Example:
• Unlocking is an operation which removes these permissions from the data item.
– Example:
• Lock Manager:
• Lock table:
– Lock manager uses it to store the identification of the transaction locking a data item,
the data item, lock mode and pointer to the next data item locked. One simple way to
implement a lock table is through linked list.
• A transaction is said to follow 2PL protocol if Locking and Unlocking can be done in two
phases.
– Growing Phase: New locks on data items may be acquired but none can be released.
– Shrinking Phase: Existing locks may be released but no new locks can be acquired.
• Database requires that all transactions should be well-formed. A transaction is well-formed if:
• It must not lock an already locked data items and it must not try to unlock a free data
item.
8
Database Concurrency Control
else begin
goto B
end;
9
Database Concurrency Control
Two-Phase Locking Techniques: Essential components
10
Database Concurrency Control
Two-Phase Locking Techniques: Essential components
else begin
go to B
end;
12
Database Concurrency Control
Two-Phase Locking Techniques: Essential components
• The following code performs the unlock operation:
if LOCK (X) = “write-locked” then
begin LOCK (X) “unlocked”;
wakes up one of the transactions, if any
end
else if LOCK (X) “read-locked” then
begin
no_of_reads (X) no_of_reads (X) -1
if no_of_reads (X) = 0 then
begin
LOCK (X) = “unlocked”;
wake up one of the transactions, if any
end
end;
13
Database Concurrency Control
Two-Phase Locking Techniques: Essential components
• Lock conversion
Ti has a write-lock (X) (*no transaction can have any lock on X*)
T1 T2 Result
17
Database Concurrency Control
Two-Phase Locking Techniques: The algorithm
T’1 T’2
18
Database Concurrency Control
Two-Phase Locking Techniques: The algorithm
• Two-phase policy generates two locking algorithms
– (a) Basic
– (b) Conservative
• Basic:
– Transaction locks data items incrementally. This may cause deadlock which is dealt with.
• Conservative:
– Prevents deadlock by locking all desired data items before transaction begins execution.
• Strict:
– A more stricter version of Basic algorithm where unlocking is performed after a transaction
terminates (commits or aborts and rolled-back). This is the most commonly used two-phase
locking algorithm.
19
Database Concurrency Control
Dealing with Deadlock and Starvation
– Deadlock
T’1 T’2
• Deadlock prevention
– This way of locking prevents deadlock since a transaction never waits for a data item.
21
Database Concurrency Control
– In this approach, deadlocks are allowed to happen. The scheduler maintains a wait-
for-graph for detecting cycle. If a cycle exists, then one transaction involved in the
cycle is selected (victim) and rolled-back.
22
Database Concurrency Control
• Deadlock avoidance
23
Database Concurrency Control
Wound-Wait and Wait-Die algorithms
• wound-wait:
– When an older transaction tries to lock a DB element that has been locked by
a younger transaction, it wounds the younger transaction.
– When a younger transaction tries to lock a DB element that has been locked by
an older transaction, it waits.
• wait-die:
– When an older transaction tries to lock a DB element that has been locked by
a younger transaction, it waits.
– When a younger transaction tries to lock a DB element that has been locked by
an older transaction, it dies.
24
Database Concurrency Control
Assume that Tn requests a lock held by Tk. The following table summarizes the actions
taken for wait-die and wound-wait scheme:
25
Database Concurrency Control
Dealing with Deadlock and Starvation
• Starvation
26
Database Concurrency Control
Timestamp based concurrency control algorithm
• Timestamp
• A concurrency control protocol that orders transactions in such a way that older transactions,
transactions with smaller timestamps, get priority in the event of conflict.
• Besides timestamps for transactions, there are timestamps for data items: a read_timestamp
and write_timestamp.
• With timestamping, if a transaction attempts to read or write a data item, then the read or
write is only allowed to proceed if the last update on that data item was carried out by an older
transaction.
• Otherwise, the transaction requesting the read/write is restarted and given a new timestamp.
New timestamps must be assigned to restarted transactions to prevent their being continually
aborted and restarted.
28
Database Concurrency Control
Timestamp based concurrency control algorithm
29
Database Concurrency Control
Timestamp based concurrency control algorithm
• If TS(T) > read_TS(X), then delay T until the transaction T’ that wrote or read X
has terminated (committed or aborted).
• If TS(T) > write_TS(X), then delay T until the transaction T’ that wrote or read X
has terminated (committed or aborted).
30
Database Concurrency Control
Timestamp based concurrency control algorithm
The extension, known as Thomas’s write rule, modifies the checks for a write operation by
transaction T as follows:
– If read_TS(X) > TS(T) then abort and roll-back T and reject the operation.
– If write_TS(X) > TS(T), then just ignore the write operation and continue execution.
This is because the most recent writes counts in case of two consecutive writes.
– If the conditions given in 1 and 2 above do not occur, then execute write_item(X) of
T and set write_TS(X) to TS(T).
31
Database Concurrency Control
Multiversion concurrency control techniques
– This approach maintains a number of versions of a data item and allocates the right version
to a read operation of a transaction. Thus, unlike other mechanisms a read operation in
this mechanism is never rejected.
– In multiversion concurrency control, each write operation creates a new version of a data
item while retaining the old version.
– When a transaction attempts to read a data item, the system selects one of the versions that
ensures serializability.
– Side effect:
• Significantly more storage (RAM and disk) is required to maintain multiple versions. To
check unlimited growth of versions, a garbage collection is run when some criteria is
satisfied. 32
Database Concurrency Control
Multiversion technique based on timestamp ordering
– Assume X1, X2, …, Xn are the version of a data item X created by a write operation of
transactions. With each Xi a read_TS (read timestamp) and a write_TS (write
timestamp) are associated.
– write_TS(Xi): The write timestamp of Xi that wrote the value of version Xi.
33
Database Concurrency Control
Multiversion technique based on timestamp ordering
– If transaction T issues write_item (X) and version i of X has the highest write_TS(Xi) of all
versions of X that is also less than or equal to TS(T), and read _TS(Xi) > TS(T), then abort
and roll-back T; otherwise create a new version Xi and read_TS(X) = write_TS(Xj) = TS(T).
– If transaction T issues read_item (X), find the version i of X that has the highest
write_TS(Xi) of all versions of X that is also less than or equal to TS(T), then return the
value of Xi to T, and set the value of read _TS(Xi) to the largest of TS(T) and the current
read_TS(Xi).
38
Database Concurrency Control
Validation (Optimistic) Concurrency Control Schemes
2. Validation phase: Serializability is checked before transactions write their updates to the
database.
– This phase for Ti checks that, for each transaction Tj that is either committed or is in its validation
phase, one of the following conditions holds:
• Tj completes its write phase before Ti starts its read phase.
• Ti starts its write phase after Tj completes its write phase, and the read_set of Ti has no items in
common with the write_set of Tj
• Both the read_set and write_set of Ti have no items in common with the write_set of Tj, and Tj
completes its read phase.
• When validating Ti, the first condition is checked first for each transaction Tj, since (1) is the
simplest condition to check. If (1) is false then (2) is checked and if (2) is false then (3 ) is checked.
If none of these conditions holds, the validation fails and Ti is aborted.
39
Database Concurrency Control
40
Database Concurrency Control
Granularity of data items and Multiple Granularity Locking
• A lockable unit of data defines its granularity. Granularity can be coarse (entire database) or it
can be fine (a tuple or an attribute of a relation).
• Data item granularity significantly affects concurrency control performance. Thus, the degree
of concurrency is low for coarse granularity and high for fine granularity.
• Example of data item granularity:
1. A field of a database record (an attribute of a tuple)
2. A database record (a tuple or a relation)
3. A disk block
4. An entire file
5. The entire database
41
Database Concurrency Control
Granularity of data items and Multiple Granularity Locking
• The following diagram illustrates a hierarchy of granularity from coarse (database) to
fine (record).
DB
f1 f2
r111 ... r11j r111 ... r11j r111 ... r11j r111 ... r11j r111 ... r11j r111 ... r11j
42
43
Database Concurrency Control
Granularity of data items and Multiple Granularity Locking
• To manage such hierarchy, in addition to read and write, three additional locking
modes, called intention lock modes are defined:
– Intention-shared (IS): indicates that a shared lock(s) will be requested on some
descendent nodes(s).
– Intention-exclusive (IX): indicates that an exclusive lock(s) will be requested on
some descendent node(s).
– Shared-intention-exclusive (SIX): indicates that the current node is locked in
shared mode but an exclusive lock(s) will be requested on some descendent
nodes(s).
44
Database Concurrency Control
Granularity of data items and Multiple Granularity Locking
• These locks are applied using the following compatibility matrix:
IS IX S SIX X
IS yes yes yes yes no Intention-shared (IS
IX yes yes no no no Intention-exclusive (IX)
yes no yes no no Shared-intention-exclusive
S (SIX)
SIX yes no no no no
X no no no no no
45
Database Concurrency Control
• The set of rules which must be followed for producing serializable schedule are
4. A node N can be locked by T in X, IX, or SIX mode only if the parent of N is already locked
by T in either IX or SIX mode.
5. T can lock a node only if it has not unlocked any node (to enforce 2PL policy).
6. T can unlock a node, N, only if none of the children of N are currently locked by T.
46
Database Concurrency Control
Granularity of data items and Multiple Granularity Locking: An example of a serializable
execution:
T1 T2 T3
IX(db)
IX(f1)
IX(db)
IS(db)
IS(f1)
IS(p11)
IX(p11)
X(r111)
IX(f1)
X(p12)
S(r11j)
IX(f2)
IX(p21)
IX(r211)
Unlock (r211)
Unlock (p21)
Unlock (f2)
S(f2)
47
Database Concurrency Control
T1 T2 T3
unlock(p12)
unlock(f1)
unlock(db)
unlock(r111)
unlock(p11)
unlock(f1)
unlock(db)
unlock (r111j)
unlock (p11)
unlock (f1)
unlock(f2)
unlock(db)
Slide 18- 48
Using Locks for Concurrency Control in Indexes
• Two-phase locking can also be applied to indexes, where the nodes of an index
correspond to disk pages.
• However, holding locks on index pages until the shrinking phase of 2PL could cause an
undue amount of transaction blocking because searching an index always starts at the
root.
• Therefore, if a transaction wants to insert a record (write operation), the root would be
locked in exclusive mode, so all other conflicting lock requests for the index must wait
until the transaction enters its shrinking phase.
• This blocks all other transactions from accessing the index, so in practice other
approaches to locking an index must be used.
49
Optimistic vs. pessimistic Concurrency Control
• Locking is pessimistic:
– Perform all operations on a copy of the data. Check at the end (before commit) if
there were any conflicts.
50