SlideShare une entreprise Scribd logo
1  sur  39
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/1
Outline
• Introduction
• Background
• Distributed Database Design
• Database Integration
• Semantic Data Control
• Distributed Query Processing
• Multidatabase Query Processing
• Distributed Transaction Management
➡ Transaction Concepts and Models
➡ Distributed Concurrency Control
➡ Distributed Reliability
• Data Replication
• Parallel Database Systems
• Distributed Object DBMS
• Peer-to-Peer Data Management
• Web Data Management
• Current Issues
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/2
Concurrency Control
• The problem of synchronizing concurrent transactions such that the
consistency of the database is maintained while, at the same
time, maximum degree of concurrency is achieved.
• Anomalies:
➡ Lost updates
✦ The effects of some transactions are not reflected on the database.
➡ Inconsistent retrievals
✦ A transaction, if it reads the same data item more than once, should always read
the same value.
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/3
Execution History (or Schedule)
• An order in which the operations of a set of transactions are executed.
• A history (schedule) can be defined as a partial order over the operations
of a set of transactions.
H1={W2(x),R1(x), R3(x),W1(x),C1,W2(y),R3(y),R2(z),C2,R3(z),C3}
T1: Read(x) T2: Write(x) T3: Read(x)
Write(x) Write(y) Read(y)
Commit Read(z) Read(z)
Commit Commit
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/4
Formalization of History
A complete history over a set of transactions T={T1, …, Tn} is a partial order
Hc(T) = {∑T, ≺H} where
 ∑T = i ∑i , for i = 1, 2, …, n
 ≺H i ≺Ti
, for i = 1, 2, …, n
 For any two conflicting operations Oij, Okl ∑T, either Oij ≺H Okl or Okl ≺H Oij
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/5
Complete Schedule – Example
Given three transactions
T1: Read(x) T2: Write(x) T3: Read(x)
Write(x) Write(y) Read(y)
Commit Read(z) Read(z)
Commit Commit
A possible complete schedule is given as the DAG
C1
R3(x)R1(x) W2(x)
W1(x) W2(y) R3(y)
R3(z)R2(z)
C2 C3
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/6
A schedule is a prefix of a complete schedule such that only some of the
operations and only some of the ordering relationships are included.
T1: Read(x) T2: Write(x) T3: Read(x)
Write(x) Write(y) Read(y)
Commit Read(z) Read(z)
Commit Commit
Schedule Definition
R1(x)
C1
R3(x)R1(x) R3(x)W2(x)W2(x)
W1(x) W2(y)W2(y) R3(y)R3(y)
R3(z)R3(z) R2(z)R2(z)
C2 C3
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/7
Serial History
• All the actions of a transaction occur consecutively.
• No interleaving of transaction operations.
• If each transaction is consistent (obeys integrity rules), then the database is
guaranteed to be consistent at the end of executing a serial history.
T1: Read(x) T2: Write(x) T3: Read(x)
Write(x) Write(y) Read(y)
Commit Read(z) Read(z)
Commit Commit
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/8
Serializable History
• Transactions execute concurrently, but the net effect of the resulting
history upon the database is equivalent to some serial history.
• Equivalent with respect to what?
➡ Conflict equivalence: the relative order of execution of the conflicting
operations belonging to unaborted transactions in two histories are the same.
➡ Conflicting operations: two incompatible operations (e.g., Read and Write)
conflict if they both access the same data item.
✦ Incompatible operations of each transaction is assumed to conflict; do not change
their execution orders.
✦ If two operations from two different transactions conflict, the corresponding
transactions are also said to conflict.
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/9
Serializable History
The following are not conflict equivalent
Hs={W2(x),W2(y),R2(z),R1(x),W1(x),R3(x),R3(y),R3(z)}
H1={W2(x),R1(x), R3(x),W1(x),W2(y),R3(y),R2(z),R3(z)}
The following are conflict equivalent; therefore H2 is serializable.
Hs={W2(x),W2(y),R2(z),R1(x),W1(x),R3(x),R3(y),R3(z)}
H2={W2(x),R1(x),W1(x),R3(x),W2(y),R3(y),R2(z),R3(z)}
T1: Read(x) T2: Write(x) T3: Read(x)
Write(x) Write(y) Read(y)
Commit Read(z) Read(z)
Commit Commit
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/10
Serializability in Distributed
DBMS
• Somewhat more involved. Two histories have to be considered:
➡ local histories
➡ global history
• For global transactions (i.e., global history) to be serializable, two
conditions are necessary:
➡ Each local history should be serializable.
➡ Two conflicting operations should be in the same relative order in all of the
local histories where they appear together.
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/11
Global Non-serializability
• x stored at Site 1, y stored at Site 2
• LH1, LH2 are individually serializable (in fact serial), but the two
transactions are not globally serializable.
T1: Read(x) T2: Read(x)
x ←x-100 Read(y)
Write(x) Commit
Read(y)
y ←y+100
Write(y)
Commit
LH1={R1(x),W1(x), R2(x)}
LH2={R2(y), R1(y),W1(y)}
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/12
Concurrency Control Algorithms
• Pessimistic
➡ Two-Phase Locking-based (2PL)
✦ Centralized (primary site) 2PL
✦ Primary copy 2PL
✦ Distributed 2PL
➡ Timestamp Ordering (TO)
✦ Basic TO
✦ Multiversion TO
✦ Conservative TO
➡ Hybrid
• Optimistic
➡ Locking-based
➡ Timestamp ordering-based
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/13
Locking-Based Algorithms
• Transactions indicate their intentions by requesting locks from the
scheduler (called lock manager).
• Locks are either read lock (rl) [also called shared lock] or write lock (wl)
[also called exclusive lock]
• Read locks and write locks conflict (because Read and Write operations are
incompatible
rl wl
rl yes no
wl no no
• Locking works nicely to allow concurrent processing of transactions.
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/14
Two-Phase Locking (2PL)
 A Transaction locks an object before using it.
 When an object is locked by another transaction, the requesting
transaction must wait.
 When a transaction releases a lock, it may not request another lock.
Obtain lock
Release lock
Lock point
Phase 1 Phase 2
BEGIN END
No.oflocks
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/15
Strict 2PL
Hold locks until the end.
Obtain lock
Release lock
BEGIN END
Transaction
duration
period of
data item
use
No.oflocks
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/16
Centralized 2PL
• There is only one 2PL scheduler in the distributed system.
• Lock requests are issued to the central scheduler.
Data Processors at
participating sites Coordinating TM Central Site LM
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/17
Distributed 2PL
• 2PL schedulers are placed at each site. Each scheduler handles lock
requests for data at that site.
• A transaction may read any of the replicated copies of item x, by obtaining
a read lock on one of the copies of x. Writing into x requires obtaining
write locks for all copies of x.
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/18
Distributed 2PL Execution
Coordinating TM Participating LMs Participating DPs
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/19
Timestamp Ordering
Transaction (Ti) is assigned a globally unique timestamp ts(Ti).
Transaction manager attaches the timestamp to all operations issued by the
transaction.
Each data item is assigned a write timestamp (wts) and a read timestamp
(rts):
➡ rts(x) = largest timestamp of any read on x
➡ wts(x) = largest timestamp of any read on x
Conflicting operations are resolved by timestamp order.
Basic T/O:
for Ri(x) for Wi(x)
if ts(Ti) < wts(x) if ts(Ti) < rts(x) and ts(Ti) < wts(x)
then reject Ri(x) then reject Wi(x)
else accept Ri(x) else accept Wi(x)
rts(x) ts(Ti) wts(x) ts(Ti)
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/20
Conservative Timestamp
Ordering
• Basic timestamp ordering tries to execute an operation as soon as it
receives it
➡ progressive
➡ too many restarts since there is no delaying
• Conservative timestamping delays each operation until there is an
assurance that it will not be restarted
• Assurance?
➡ No other operation with a smaller timestamp can arrive at the scheduler
➡ Note that the delay may result in the formation of deadlocks
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/21
Multiversion Timestamp Ordering
• Do not modify the values in the database, create new values.
• A Ri(x) is translated into a read on one version of x.
➡ Find a version of x (say xv) such that ts(xv) is the largest timestamp less than
ts(Ti).
• A Wi(x) is translated into Wi(xw) and accepted if the scheduler has not yet
processed any Rj(xr) such that
ts(Ti) < ts(xr) < ts(Tj)
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/22
Optimistic Concurrency Control
Algorithms
Pessimistic execution
Optimistic execution
Validate Read Compute Write
ValidateRead Compute Write
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/23
Optimistic Concurrency Control
Algorithms
• Transaction execution model: divide into subtransactions each of which
execute at a site
➡ Tij: transaction Ti that executes at site j
• Transactions run independently at each site until they reach the end of
their read phases
• All subtransactions are assigned a timestamp at the end of their read phase
• Validation test performed during validation phase. If one fails, all rejected.
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/24
Optimistic CC Validation Test
 If all transactions Tk where ts(Tk) < ts(Tij) have completed their write
phase before Tij has started its read phase, then validation succeeds
➡ Transaction executions in serial order
Tk
R V W
R V W
Tij
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/25
Optimistic CC Validation Test
 If there is any transaction Tk such that ts(Tk)<ts(Tij) and which completes
its write phase while Tij is in its read phase, then validation succeeds if
WS(Tk) RS(Tij) = Ø
➡ Read and write phases overlap, but Tij does not read data items written
by Tk
R V W
Tk
R V W
Tij
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/26
Optimistic CC Validation Test
 If there is any transaction Tk such that ts(Tk)< ts(Tij) and which completes
its read phase before Tij completes its read phase, then validation succeeds
if WS(Tk) RS(Tij) = Ø and WS(Tk) WS(Tij) = Ø
➡ They overlap, but don't access any common data items.
R V W
Tk
R V W
Tij
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/27
Deadlock
• A transaction is deadlocked if it is blocked and will remain blocked until
there is intervention.
• Locking-based CC algorithms may cause deadlocks.
• TO-based algorithms that involve waiting may cause deadlocks.
• Wait-for graph
➡ If transaction Ti waits for another transaction Tj to release a lock on an
entity, then Ti → Tj in WFG.
Ti
Tj
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/28
Local versus Global WFG
Assume T1 and T2 run at site 1, T3 and T4 run at site 2. Also assume T3 waits
for a lock held by T4 which waits for a lock held by T1 which waits for a lock
held by T2 which, in turn, waits for a lock held by T3.
Local WFG
Global WFG
T1
Site 1 Site 2
T2
T4
T3
T1
T2
T4
T3
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/29
Deadlock Management
• Ignore
➡ Let the application programmer deal with it, or restart the system
• Prevention
➡ Guaranteeing that deadlocks can never occur in the first place. Check
transaction when it is initiated. Requires no run time support.
• Avoidance
➡ Detecting potential deadlocks in advance and taking action to insure that
deadlock will not occur. Requires run time support.
• Detection and Recovery
➡ Allowing deadlocks to form and then finding and breaking them. As in the
avoidance scheme, this requires run time support.
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/30
Deadlock Prevention
• All resources which may be needed by a transaction must be predeclared.
➡ The system must guarantee that none of the resources will be needed by an
ongoing transaction.
➡ Resources must only be reserved, but not necessarily allocated a priori
➡ Unsuitability of the scheme in database environment
➡ Suitable for systems that have no provisions for undoing processes.
• Evaluation:
– Reduced concurrency due to preallocation
– Evaluating whether an allocation is safe leads to added overhead.
– Difficult to determine (partial order)
+ No transaction rollback or restart is involved.
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/31
Deadlock Avoidance
• Transactions are not required to request resources a priori.
• Transactions are allowed to proceed unless a requested resource is
unavailable.
• In case of conflict, transactions may be allowed to wait for a fixed time
interval.
• Order either the data items or the sites and always request locks in that
order.
• More attractive than prevention in a database environment.
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/32
Deadlock Avoidance –
Wait-Die Algorithm
If Ti requests a lock on a data item which is already locked by Tj, then Ti is
permitted to wait iff ts(Ti)<ts(Tj). If ts(Ti)>ts(Tj), then Ti is aborted and
restarted with the same timestamp.
➡ if ts(Ti)<ts(Tj) then Ti waits else Ti dies
➡ non-preemptive: Ti never preempts Tj
➡ prefers younger transactions
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/33
Deadlock Avoidance –
Wound-Wait Algorithm
If Ti requests a lock on a data item which is already locked by Tj , then Ti is
permitted to wait iff ts(Ti)>ts(Tj). If ts(Ti)<ts(Tj), then Tj is aborted and the
lock is granted to Ti.
➡ if ts(Ti)<ts(Tj) then Tj is wounded else Ti waits
➡ preemptive: Ti preempts Tj if it is younger
➡ prefers older transactions
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/34
Deadlock Detection
• Transactions are allowed to wait freely.
• Wait-for graphs and cycles.
• Topologies for deadlock detection algorithms
➡ Centralized
➡ Distributed
➡ Hierarchical
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/35
Centralized Deadlock Detection
• One site is designated as the deadlock detector for the system. Each
scheduler periodically sends its local WFG to the central site which merges
them to a global WFG to determine cycles.
• How often to transmit?
➡ Too often ⇒ higher communication cost but lower delays due to undetected
deadlocks
➡ Too late ⇒ higher delays due to deadlocks, but lower communication cost
• Would be a reasonable choice if the concurrency control algorithm is also
centralized.
• Proposed for Distributed INGRES
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/36
Build a hierarchy of detectors
Hierarchical Deadlock Detection
Site 1 Site 2 Site 3 Site 4
DD21 DD22 DD23 DD24
DD11 DD14
DD0x
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/37
Distributed Deadlock Detection
• Sites cooperate in detection of deadlocks.
• One example:
➡ The local WFGs are formed at each site and passed on to other sites. Each
local WFG is modified as follows:
 Since each site receives the potential deadlock cycles from other sites, these
edges are added to the local WFGs
 The edges in the local WFG which show that local transactions are waiting
for transactions at other sites are joined with edges in the local WFGs which
show that remote transactions are waiting for local ones.
➡ Each local deadlock detector:
✦ looks for a cycle that does not involve the external edge. If it exists, there is a
local deadlock which can be handled locally.
✦ looks for a cycle involving the external edge. If it exists, it indicates a
potential global deadlock. Pass on the information to the next site.
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/38
“Relaxed” Concurrency Control
• Non-serializable histories
➡ E.g., ordered shared locks
➡ Semantics of transactions can be used
✦ Look at semantic compatibility of operations rather than simply looking at reads
and writes
• Nested distributed transactions
➡ Closed nested transactions
➡ Open nested transactions
➡ Multilevel transactions
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/39
Multilevel Transactions
Consider two transactions
T1: Withdraw(o,x) T2: Withdraw(o,y)
Deposit(p,x) Deposit(p,y)

Contenu connexe

Tendances

16. Concurrency Control in DBMS
16. Concurrency Control in DBMS16. Concurrency Control in DBMS
16. Concurrency Control in DBMS
koolkampus
 
Record storage and primary file organization
Record storage and primary file organizationRecord storage and primary file organization
Record storage and primary file organization
Jafar Nesargi
 

Tendances (20)

Concurrency control
Concurrency controlConcurrency control
Concurrency control
 
Load Balancing in Parallel and Distributed Database
Load Balancing in Parallel and Distributed DatabaseLoad Balancing in Parallel and Distributed Database
Load Balancing in Parallel and Distributed Database
 
Concurrency control
Concurrency controlConcurrency control
Concurrency control
 
Concurrency Control Techniques
Concurrency Control TechniquesConcurrency Control Techniques
Concurrency Control Techniques
 
Distributed database
Distributed databaseDistributed database
Distributed database
 
Concurrency control
Concurrency controlConcurrency control
Concurrency control
 
Dbms acid
Dbms acidDbms acid
Dbms acid
 
Distributed database management system
Distributed database management  systemDistributed database management  system
Distributed database management system
 
Concurrency control!
Concurrency control!Concurrency control!
Concurrency control!
 
Deadlock in database
Deadlock in databaseDeadlock in database
Deadlock in database
 
Deadlock
DeadlockDeadlock
Deadlock
 
Disk structure
Disk structureDisk structure
Disk structure
 
Concurrency Control.
Concurrency Control.Concurrency Control.
Concurrency Control.
 
Deadlock dbms
Deadlock dbmsDeadlock dbms
Deadlock dbms
 
Concurrency control
Concurrency  controlConcurrency  control
Concurrency control
 
Concurrency Control in Distributed Database.
Concurrency Control in Distributed Database.Concurrency Control in Distributed Database.
Concurrency Control in Distributed Database.
 
16. Concurrency Control in DBMS
16. Concurrency Control in DBMS16. Concurrency Control in DBMS
16. Concurrency Control in DBMS
 
Deadlock management
Deadlock managementDeadlock management
Deadlock management
 
Transaction Management - Deadlock Handling
Transaction Management - Deadlock HandlingTransaction Management - Deadlock Handling
Transaction Management - Deadlock Handling
 
Record storage and primary file organization
Record storage and primary file organizationRecord storage and primary file organization
Record storage and primary file organization
 

En vedette

Database ,7 query localization
Database ,7 query localizationDatabase ,7 query localization
Database ,7 query localization
Ali Usman
 
Database, 3 Distribution Design
Database, 3 Distribution DesignDatabase, 3 Distribution Design
Database, 3 Distribution Design
Ali Usman
 
Database , 4 Data Integration
Database , 4 Data IntegrationDatabase , 4 Data Integration
Database , 4 Data Integration
Ali Usman
 
Processor Specifications
Processor SpecificationsProcessor Specifications
Processor Specifications
Ali Usman
 
Database , 5 Semantic
Database , 5 SemanticDatabase , 5 Semantic
Database , 5 Semantic
Ali Usman
 
1.studi tentang organisasi
1.studi tentang organisasi1.studi tentang organisasi
1.studi tentang organisasi
Fokgusta
 
Gsm (Part 1)
Gsm (Part 1)Gsm (Part 1)
Gsm (Part 1)
Ali Usman
 

En vedette (20)

Concurrency control
Concurrency controlConcurrency control
Concurrency control
 
Database ,7 query localization
Database ,7 query localizationDatabase ,7 query localization
Database ,7 query localization
 
Database, 3 Distribution Design
Database, 3 Distribution DesignDatabase, 3 Distribution Design
Database, 3 Distribution Design
 
Database , 4 Data Integration
Database , 4 Data IntegrationDatabase , 4 Data Integration
Database , 4 Data Integration
 
Concurrency
ConcurrencyConcurrency
Concurrency
 
Mydbms
MydbmsMydbms
Mydbms
 
Lock free programming - pro tips devoxx uk
Lock free programming - pro tips devoxx ukLock free programming - pro tips devoxx uk
Lock free programming - pro tips devoxx uk
 
Modul 04 ta1_ metodologi penelitian
Modul 04 ta1_ metodologi penelitianModul 04 ta1_ metodologi penelitian
Modul 04 ta1_ metodologi penelitian
 
Media ajarelektronik
Media ajarelektronikMedia ajarelektronik
Media ajarelektronik
 
Processor Specifications
Processor SpecificationsProcessor Specifications
Processor Specifications
 
Optimistic Algorithm and Concurrency Control Algorithm
Optimistic Algorithm and Concurrency Control AlgorithmOptimistic Algorithm and Concurrency Control Algorithm
Optimistic Algorithm and Concurrency Control Algorithm
 
[2D7]레기온즈로 살펴보는 확장 가능한 게임서버의 구현
[2D7]레기온즈로 살펴보는 확장 가능한 게임서버의 구현[2D7]레기온즈로 살펴보는 확장 가능한 게임서버의 구현
[2D7]레기온즈로 살펴보는 확장 가능한 게임서버의 구현
 
Model pembelajaran yang efektif
Model pembelajaran yang efektifModel pembelajaran yang efektif
Model pembelajaran yang efektif
 
Model pemb-2005
Model pemb-2005Model pemb-2005
Model pemb-2005
 
Kalimat aktifpasif-kalimat-langsung-taklangsung
Kalimat aktifpasif-kalimat-langsung-taklangsungKalimat aktifpasif-kalimat-langsung-taklangsung
Kalimat aktifpasif-kalimat-langsung-taklangsung
 
Database , 5 Semantic
Database , 5 SemanticDatabase , 5 Semantic
Database , 5 Semantic
 
PL/pgSQL - An Introduction on Using Imperative Programming in PostgreSQL
PL/pgSQL - An Introduction on Using Imperative Programming in PostgreSQLPL/pgSQL - An Introduction on Using Imperative Programming in PostgreSQL
PL/pgSQL - An Introduction on Using Imperative Programming in PostgreSQL
 
Kata kajian-dan-kata-populer
Kata kajian-dan-kata-populerKata kajian-dan-kata-populer
Kata kajian-dan-kata-populer
 
1.studi tentang organisasi
1.studi tentang organisasi1.studi tentang organisasi
1.studi tentang organisasi
 
Gsm (Part 1)
Gsm (Part 1)Gsm (Part 1)
Gsm (Part 1)
 

Similaire à Database ,11 Concurrency Control

Database , 13 Replication
Database , 13 ReplicationDatabase , 13 Replication
Database , 13 Replication
Ali Usman
 
Ppt on transaction schduling in distributer real time database system(seminaar)
Ppt on transaction schduling in distributer real time database system(seminaar)Ppt on transaction schduling in distributer real time database system(seminaar)
Ppt on transaction schduling in distributer real time database system(seminaar)
Royalzig Luxury Furniture
 
Databases: Concurrency Control
Databases: Concurrency ControlDatabases: Concurrency Control
Databases: Concurrency Control
Damian T. Gordon
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
Christalin Nelson
 
Dbms sixth chapter_part-1_2011
Dbms sixth chapter_part-1_2011Dbms sixth chapter_part-1_2011
Dbms sixth chapter_part-1_2011
sumit_study
 

Similaire à Database ,11 Concurrency Control (20)

UNIT-IV: Transaction Processing Concepts
UNIT-IV: Transaction Processing ConceptsUNIT-IV: Transaction Processing Concepts
UNIT-IV: Transaction Processing Concepts
 
Database , 13 Replication
Database , 13 ReplicationDatabase , 13 Replication
Database , 13 Replication
 
Concurrent Transactions.ppt
Concurrent Transactions.pptConcurrent Transactions.ppt
Concurrent Transactions.ppt
 
3 concurrency controlone_v3
3 concurrency controlone_v33 concurrency controlone_v3
3 concurrency controlone_v3
 
24904 lecture11
24904 lecture1124904 lecture11
24904 lecture11
 
Ppt on transaction schduling in distributer real time database system(seminaar)
Ppt on transaction schduling in distributer real time database system(seminaar)Ppt on transaction schduling in distributer real time database system(seminaar)
Ppt on transaction schduling in distributer real time database system(seminaar)
 
Chapter17
Chapter17Chapter17
Chapter17
 
Lec08
Lec08Lec08
Lec08
 
protocols of concurrency control
protocols of concurrency controlprotocols of concurrency control
protocols of concurrency control
 
db unit 4 dbms protocols in transaction
db unit 4 dbms  protocols in transactiondb unit 4 dbms  protocols in transaction
db unit 4 dbms protocols in transaction
 
Databases: Concurrency Control
Databases: Concurrency ControlDatabases: Concurrency Control
Databases: Concurrency Control
 
Database concurrency control &amp; recovery (1)
Database concurrency control &amp; recovery (1)Database concurrency control &amp; recovery (1)
Database concurrency control &amp; recovery (1)
 
Transactions in dbms
Transactions in dbmsTransactions in dbms
Transactions in dbms
 
recoverability and serializability dbms
recoverability and serializability  dbmsrecoverability and serializability  dbms
recoverability and serializability dbms
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
Transaction and concurrency control
Transaction and concurrency controlTransaction and concurrency control
Transaction and concurrency control
 
m-serial.ppt
m-serial.pptm-serial.ppt
m-serial.ppt
 
Dbms sixth chapter_part-1_2011
Dbms sixth chapter_part-1_2011Dbms sixth chapter_part-1_2011
Dbms sixth chapter_part-1_2011
 
Transaction.pptx
Transaction.pptxTransaction.pptx
Transaction.pptx
 
ch17.pptx
ch17.pptxch17.pptx
ch17.pptx
 

Plus de Ali Usman

Database ,18 Current Issues
Database ,18 Current IssuesDatabase ,18 Current Issues
Database ,18 Current Issues
Ali Usman
 
Database , 17 Web
Database , 17 WebDatabase , 17 Web
Database , 17 Web
Ali Usman
 
Database ,16 P2P
Database ,16 P2P Database ,16 P2P
Database ,16 P2P
Ali Usman
 
Database , 15 Object DBMS
Database , 15 Object DBMSDatabase , 15 Object DBMS
Database , 15 Object DBMS
Ali Usman
 
Database , 6 Query Introduction
Database , 6 Query Introduction Database , 6 Query Introduction
Database , 6 Query Introduction
Ali Usman
 
Database ,2 Background
 Database ,2 Background Database ,2 Background
Database ,2 Background
Ali Usman
 
Database , 1 Introduction
 Database , 1 Introduction Database , 1 Introduction
Database , 1 Introduction
Ali Usman
 
Processor Specifications
Processor SpecificationsProcessor Specifications
Processor Specifications
Ali Usman
 
Fifty Year Of Microprocessor
Fifty Year Of MicroprocessorFifty Year Of Microprocessor
Fifty Year Of Microprocessor
Ali Usman
 
Discrete Structures lecture 2
 Discrete Structures lecture 2 Discrete Structures lecture 2
Discrete Structures lecture 2
Ali Usman
 
Discrete Structures. Lecture 1
 Discrete Structures. Lecture 1  Discrete Structures. Lecture 1
Discrete Structures. Lecture 1
Ali Usman
 
Muslim Contributions in Medicine-Geography-Astronomy
Muslim Contributions in Medicine-Geography-AstronomyMuslim Contributions in Medicine-Geography-Astronomy
Muslim Contributions in Medicine-Geography-Astronomy
Ali Usman
 
Muslim Contributions in Geography
Muslim Contributions in GeographyMuslim Contributions in Geography
Muslim Contributions in Geography
Ali Usman
 
Muslim Contributions in Astronomy
Muslim Contributions in AstronomyMuslim Contributions in Astronomy
Muslim Contributions in Astronomy
Ali Usman
 
Ptcl modem (user manual)
Ptcl modem (user manual)Ptcl modem (user manual)
Ptcl modem (user manual)
Ali Usman
 
Nimat-ul-ALLAH shah wali
Nimat-ul-ALLAH shah wali Nimat-ul-ALLAH shah wali
Nimat-ul-ALLAH shah wali
Ali Usman
 
Osi protocols
Osi protocolsOsi protocols
Osi protocols
Ali Usman
 

Plus de Ali Usman (20)

Cisco Packet Tracer Overview
Cisco Packet Tracer OverviewCisco Packet Tracer Overview
Cisco Packet Tracer Overview
 
Islamic Arts and Architecture
Islamic Arts and  ArchitectureIslamic Arts and  Architecture
Islamic Arts and Architecture
 
Database ,18 Current Issues
Database ,18 Current IssuesDatabase ,18 Current Issues
Database ,18 Current Issues
 
Database , 17 Web
Database , 17 WebDatabase , 17 Web
Database , 17 Web
 
Database ,16 P2P
Database ,16 P2P Database ,16 P2P
Database ,16 P2P
 
Database , 15 Object DBMS
Database , 15 Object DBMSDatabase , 15 Object DBMS
Database , 15 Object DBMS
 
Database , 6 Query Introduction
Database , 6 Query Introduction Database , 6 Query Introduction
Database , 6 Query Introduction
 
Database ,2 Background
 Database ,2 Background Database ,2 Background
Database ,2 Background
 
Database , 1 Introduction
 Database , 1 Introduction Database , 1 Introduction
Database , 1 Introduction
 
Processor Specifications
Processor SpecificationsProcessor Specifications
Processor Specifications
 
Fifty Year Of Microprocessor
Fifty Year Of MicroprocessorFifty Year Of Microprocessor
Fifty Year Of Microprocessor
 
Discrete Structures lecture 2
 Discrete Structures lecture 2 Discrete Structures lecture 2
Discrete Structures lecture 2
 
Discrete Structures. Lecture 1
 Discrete Structures. Lecture 1  Discrete Structures. Lecture 1
Discrete Structures. Lecture 1
 
Muslim Contributions in Medicine-Geography-Astronomy
Muslim Contributions in Medicine-Geography-AstronomyMuslim Contributions in Medicine-Geography-Astronomy
Muslim Contributions in Medicine-Geography-Astronomy
 
Muslim Contributions in Geography
Muslim Contributions in GeographyMuslim Contributions in Geography
Muslim Contributions in Geography
 
Muslim Contributions in Astronomy
Muslim Contributions in AstronomyMuslim Contributions in Astronomy
Muslim Contributions in Astronomy
 
Ptcl modem (user manual)
Ptcl modem (user manual)Ptcl modem (user manual)
Ptcl modem (user manual)
 
Nimat-ul-ALLAH shah wali
Nimat-ul-ALLAH shah wali Nimat-ul-ALLAH shah wali
Nimat-ul-ALLAH shah wali
 
Muslim Contributions in Mathematics
Muslim Contributions in MathematicsMuslim Contributions in Mathematics
Muslim Contributions in Mathematics
 
Osi protocols
Osi protocolsOsi protocols
Osi protocols
 

Dernier

Dernier (20)

Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 

Database ,11 Concurrency Control

  • 1. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/1 Outline • Introduction • Background • Distributed Database Design • Database Integration • Semantic Data Control • Distributed Query Processing • Multidatabase Query Processing • Distributed Transaction Management ➡ Transaction Concepts and Models ➡ Distributed Concurrency Control ➡ Distributed Reliability • Data Replication • Parallel Database Systems • Distributed Object DBMS • Peer-to-Peer Data Management • Web Data Management • Current Issues
  • 2. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/2 Concurrency Control • The problem of synchronizing concurrent transactions such that the consistency of the database is maintained while, at the same time, maximum degree of concurrency is achieved. • Anomalies: ➡ Lost updates ✦ The effects of some transactions are not reflected on the database. ➡ Inconsistent retrievals ✦ A transaction, if it reads the same data item more than once, should always read the same value.
  • 3. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/3 Execution History (or Schedule) • An order in which the operations of a set of transactions are executed. • A history (schedule) can be defined as a partial order over the operations of a set of transactions. H1={W2(x),R1(x), R3(x),W1(x),C1,W2(y),R3(y),R2(z),C2,R3(z),C3} T1: Read(x) T2: Write(x) T3: Read(x) Write(x) Write(y) Read(y) Commit Read(z) Read(z) Commit Commit
  • 4. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/4 Formalization of History A complete history over a set of transactions T={T1, …, Tn} is a partial order Hc(T) = {∑T, ≺H} where  ∑T = i ∑i , for i = 1, 2, …, n  ≺H i ≺Ti , for i = 1, 2, …, n  For any two conflicting operations Oij, Okl ∑T, either Oij ≺H Okl or Okl ≺H Oij
  • 5. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/5 Complete Schedule – Example Given three transactions T1: Read(x) T2: Write(x) T3: Read(x) Write(x) Write(y) Read(y) Commit Read(z) Read(z) Commit Commit A possible complete schedule is given as the DAG C1 R3(x)R1(x) W2(x) W1(x) W2(y) R3(y) R3(z)R2(z) C2 C3
  • 6. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/6 A schedule is a prefix of a complete schedule such that only some of the operations and only some of the ordering relationships are included. T1: Read(x) T2: Write(x) T3: Read(x) Write(x) Write(y) Read(y) Commit Read(z) Read(z) Commit Commit Schedule Definition R1(x) C1 R3(x)R1(x) R3(x)W2(x)W2(x) W1(x) W2(y)W2(y) R3(y)R3(y) R3(z)R3(z) R2(z)R2(z) C2 C3
  • 7. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/7 Serial History • All the actions of a transaction occur consecutively. • No interleaving of transaction operations. • If each transaction is consistent (obeys integrity rules), then the database is guaranteed to be consistent at the end of executing a serial history. T1: Read(x) T2: Write(x) T3: Read(x) Write(x) Write(y) Read(y) Commit Read(z) Read(z) Commit Commit
  • 8. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/8 Serializable History • Transactions execute concurrently, but the net effect of the resulting history upon the database is equivalent to some serial history. • Equivalent with respect to what? ➡ Conflict equivalence: the relative order of execution of the conflicting operations belonging to unaborted transactions in two histories are the same. ➡ Conflicting operations: two incompatible operations (e.g., Read and Write) conflict if they both access the same data item. ✦ Incompatible operations of each transaction is assumed to conflict; do not change their execution orders. ✦ If two operations from two different transactions conflict, the corresponding transactions are also said to conflict.
  • 9. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/9 Serializable History The following are not conflict equivalent Hs={W2(x),W2(y),R2(z),R1(x),W1(x),R3(x),R3(y),R3(z)} H1={W2(x),R1(x), R3(x),W1(x),W2(y),R3(y),R2(z),R3(z)} The following are conflict equivalent; therefore H2 is serializable. Hs={W2(x),W2(y),R2(z),R1(x),W1(x),R3(x),R3(y),R3(z)} H2={W2(x),R1(x),W1(x),R3(x),W2(y),R3(y),R2(z),R3(z)} T1: Read(x) T2: Write(x) T3: Read(x) Write(x) Write(y) Read(y) Commit Read(z) Read(z) Commit Commit
  • 10. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/10 Serializability in Distributed DBMS • Somewhat more involved. Two histories have to be considered: ➡ local histories ➡ global history • For global transactions (i.e., global history) to be serializable, two conditions are necessary: ➡ Each local history should be serializable. ➡ Two conflicting operations should be in the same relative order in all of the local histories where they appear together.
  • 11. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/11 Global Non-serializability • x stored at Site 1, y stored at Site 2 • LH1, LH2 are individually serializable (in fact serial), but the two transactions are not globally serializable. T1: Read(x) T2: Read(x) x ←x-100 Read(y) Write(x) Commit Read(y) y ←y+100 Write(y) Commit LH1={R1(x),W1(x), R2(x)} LH2={R2(y), R1(y),W1(y)}
  • 12. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/12 Concurrency Control Algorithms • Pessimistic ➡ Two-Phase Locking-based (2PL) ✦ Centralized (primary site) 2PL ✦ Primary copy 2PL ✦ Distributed 2PL ➡ Timestamp Ordering (TO) ✦ Basic TO ✦ Multiversion TO ✦ Conservative TO ➡ Hybrid • Optimistic ➡ Locking-based ➡ Timestamp ordering-based
  • 13. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/13 Locking-Based Algorithms • Transactions indicate their intentions by requesting locks from the scheduler (called lock manager). • Locks are either read lock (rl) [also called shared lock] or write lock (wl) [also called exclusive lock] • Read locks and write locks conflict (because Read and Write operations are incompatible rl wl rl yes no wl no no • Locking works nicely to allow concurrent processing of transactions.
  • 14. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/14 Two-Phase Locking (2PL)  A Transaction locks an object before using it.  When an object is locked by another transaction, the requesting transaction must wait.  When a transaction releases a lock, it may not request another lock. Obtain lock Release lock Lock point Phase 1 Phase 2 BEGIN END No.oflocks
  • 15. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/15 Strict 2PL Hold locks until the end. Obtain lock Release lock BEGIN END Transaction duration period of data item use No.oflocks
  • 16. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/16 Centralized 2PL • There is only one 2PL scheduler in the distributed system. • Lock requests are issued to the central scheduler. Data Processors at participating sites Coordinating TM Central Site LM
  • 17. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/17 Distributed 2PL • 2PL schedulers are placed at each site. Each scheduler handles lock requests for data at that site. • A transaction may read any of the replicated copies of item x, by obtaining a read lock on one of the copies of x. Writing into x requires obtaining write locks for all copies of x.
  • 18. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/18 Distributed 2PL Execution Coordinating TM Participating LMs Participating DPs
  • 19. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/19 Timestamp Ordering Transaction (Ti) is assigned a globally unique timestamp ts(Ti). Transaction manager attaches the timestamp to all operations issued by the transaction. Each data item is assigned a write timestamp (wts) and a read timestamp (rts): ➡ rts(x) = largest timestamp of any read on x ➡ wts(x) = largest timestamp of any read on x Conflicting operations are resolved by timestamp order. Basic T/O: for Ri(x) for Wi(x) if ts(Ti) < wts(x) if ts(Ti) < rts(x) and ts(Ti) < wts(x) then reject Ri(x) then reject Wi(x) else accept Ri(x) else accept Wi(x) rts(x) ts(Ti) wts(x) ts(Ti)
  • 20. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/20 Conservative Timestamp Ordering • Basic timestamp ordering tries to execute an operation as soon as it receives it ➡ progressive ➡ too many restarts since there is no delaying • Conservative timestamping delays each operation until there is an assurance that it will not be restarted • Assurance? ➡ No other operation with a smaller timestamp can arrive at the scheduler ➡ Note that the delay may result in the formation of deadlocks
  • 21. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/21 Multiversion Timestamp Ordering • Do not modify the values in the database, create new values. • A Ri(x) is translated into a read on one version of x. ➡ Find a version of x (say xv) such that ts(xv) is the largest timestamp less than ts(Ti). • A Wi(x) is translated into Wi(xw) and accepted if the scheduler has not yet processed any Rj(xr) such that ts(Ti) < ts(xr) < ts(Tj)
  • 22. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/22 Optimistic Concurrency Control Algorithms Pessimistic execution Optimistic execution Validate Read Compute Write ValidateRead Compute Write
  • 23. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/23 Optimistic Concurrency Control Algorithms • Transaction execution model: divide into subtransactions each of which execute at a site ➡ Tij: transaction Ti that executes at site j • Transactions run independently at each site until they reach the end of their read phases • All subtransactions are assigned a timestamp at the end of their read phase • Validation test performed during validation phase. If one fails, all rejected.
  • 24. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/24 Optimistic CC Validation Test  If all transactions Tk where ts(Tk) < ts(Tij) have completed their write phase before Tij has started its read phase, then validation succeeds ➡ Transaction executions in serial order Tk R V W R V W Tij
  • 25. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/25 Optimistic CC Validation Test  If there is any transaction Tk such that ts(Tk)<ts(Tij) and which completes its write phase while Tij is in its read phase, then validation succeeds if WS(Tk) RS(Tij) = Ø ➡ Read and write phases overlap, but Tij does not read data items written by Tk R V W Tk R V W Tij
  • 26. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/26 Optimistic CC Validation Test  If there is any transaction Tk such that ts(Tk)< ts(Tij) and which completes its read phase before Tij completes its read phase, then validation succeeds if WS(Tk) RS(Tij) = Ø and WS(Tk) WS(Tij) = Ø ➡ They overlap, but don't access any common data items. R V W Tk R V W Tij
  • 27. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/27 Deadlock • A transaction is deadlocked if it is blocked and will remain blocked until there is intervention. • Locking-based CC algorithms may cause deadlocks. • TO-based algorithms that involve waiting may cause deadlocks. • Wait-for graph ➡ If transaction Ti waits for another transaction Tj to release a lock on an entity, then Ti → Tj in WFG. Ti Tj
  • 28. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/28 Local versus Global WFG Assume T1 and T2 run at site 1, T3 and T4 run at site 2. Also assume T3 waits for a lock held by T4 which waits for a lock held by T1 which waits for a lock held by T2 which, in turn, waits for a lock held by T3. Local WFG Global WFG T1 Site 1 Site 2 T2 T4 T3 T1 T2 T4 T3
  • 29. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/29 Deadlock Management • Ignore ➡ Let the application programmer deal with it, or restart the system • Prevention ➡ Guaranteeing that deadlocks can never occur in the first place. Check transaction when it is initiated. Requires no run time support. • Avoidance ➡ Detecting potential deadlocks in advance and taking action to insure that deadlock will not occur. Requires run time support. • Detection and Recovery ➡ Allowing deadlocks to form and then finding and breaking them. As in the avoidance scheme, this requires run time support.
  • 30. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/30 Deadlock Prevention • All resources which may be needed by a transaction must be predeclared. ➡ The system must guarantee that none of the resources will be needed by an ongoing transaction. ➡ Resources must only be reserved, but not necessarily allocated a priori ➡ Unsuitability of the scheme in database environment ➡ Suitable for systems that have no provisions for undoing processes. • Evaluation: – Reduced concurrency due to preallocation – Evaluating whether an allocation is safe leads to added overhead. – Difficult to determine (partial order) + No transaction rollback or restart is involved.
  • 31. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/31 Deadlock Avoidance • Transactions are not required to request resources a priori. • Transactions are allowed to proceed unless a requested resource is unavailable. • In case of conflict, transactions may be allowed to wait for a fixed time interval. • Order either the data items or the sites and always request locks in that order. • More attractive than prevention in a database environment.
  • 32. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/32 Deadlock Avoidance – Wait-Die Algorithm If Ti requests a lock on a data item which is already locked by Tj, then Ti is permitted to wait iff ts(Ti)<ts(Tj). If ts(Ti)>ts(Tj), then Ti is aborted and restarted with the same timestamp. ➡ if ts(Ti)<ts(Tj) then Ti waits else Ti dies ➡ non-preemptive: Ti never preempts Tj ➡ prefers younger transactions
  • 33. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/33 Deadlock Avoidance – Wound-Wait Algorithm If Ti requests a lock on a data item which is already locked by Tj , then Ti is permitted to wait iff ts(Ti)>ts(Tj). If ts(Ti)<ts(Tj), then Tj is aborted and the lock is granted to Ti. ➡ if ts(Ti)<ts(Tj) then Tj is wounded else Ti waits ➡ preemptive: Ti preempts Tj if it is younger ➡ prefers older transactions
  • 34. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/34 Deadlock Detection • Transactions are allowed to wait freely. • Wait-for graphs and cycles. • Topologies for deadlock detection algorithms ➡ Centralized ➡ Distributed ➡ Hierarchical
  • 35. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/35 Centralized Deadlock Detection • One site is designated as the deadlock detector for the system. Each scheduler periodically sends its local WFG to the central site which merges them to a global WFG to determine cycles. • How often to transmit? ➡ Too often ⇒ higher communication cost but lower delays due to undetected deadlocks ➡ Too late ⇒ higher delays due to deadlocks, but lower communication cost • Would be a reasonable choice if the concurrency control algorithm is also centralized. • Proposed for Distributed INGRES
  • 36. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/36 Build a hierarchy of detectors Hierarchical Deadlock Detection Site 1 Site 2 Site 3 Site 4 DD21 DD22 DD23 DD24 DD11 DD14 DD0x
  • 37. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/37 Distributed Deadlock Detection • Sites cooperate in detection of deadlocks. • One example: ➡ The local WFGs are formed at each site and passed on to other sites. Each local WFG is modified as follows:  Since each site receives the potential deadlock cycles from other sites, these edges are added to the local WFGs  The edges in the local WFG which show that local transactions are waiting for transactions at other sites are joined with edges in the local WFGs which show that remote transactions are waiting for local ones. ➡ Each local deadlock detector: ✦ looks for a cycle that does not involve the external edge. If it exists, there is a local deadlock which can be handled locally. ✦ looks for a cycle involving the external edge. If it exists, it indicates a potential global deadlock. Pass on the information to the next site.
  • 38. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/38 “Relaxed” Concurrency Control • Non-serializable histories ➡ E.g., ordered shared locks ➡ Semantics of transactions can be used ✦ Look at semantic compatibility of operations rather than simply looking at reads and writes • Nested distributed transactions ➡ Closed nested transactions ➡ Open nested transactions ➡ Multilevel transactions
  • 39. Distributed DBMS © M. T. Özsu & P. Valduriez Ch.11/39 Multilevel Transactions Consider two transactions T1: Withdraw(o,x) T2: Withdraw(o,y) Deposit(p,x) Deposit(p,y)