SlideShare ist ein Scribd-Unternehmen logo
1 von 55
Unit – 9
Distributed Deadlock
&
Recovery
Outlines..
• Deadlock in Distributed Systems
• Recovery in DBMS
• Advanced recovery techniques
– Shadow Paging
– Fuzzy checkpoint
– ARIES
– RAID levels
• Two Phase and Three Phase commit protocols
1/11/2017 2Prof. Dhaval R. Chandarana
Deadlock
• A deadlock can occur because transactions wait for
one another. Informally, a deadlock situation is a set
of requests that can never be granted by the
concurrency control mechanism.
• A deadlock can be indicated by a cycle in the wait-
for-graph (WFG).
• In computer science, deadlock refers to a specific
condition when two or more processes are each
waiting for another to release a resource, or more
than two processes are waiting for resources in a
circular chain.
1/11/2017 3Prof. Dhaval R. Chandarana
Deadlock
1/11/2017 4Prof. Dhaval R. Chandarana
Necessary Condition for Deadlock
• Mutual exclusion: A resource may be acquired
exclusively by only one process at a time.
1/11/2017 5Prof. Dhaval R. Chandarana
Necessary Condition for Deadlock
• Hold and wait: Processes currently holding resources
that were granted earlier can request new resources.
1/11/2017 6Prof. Dhaval R. Chandarana
Necessary Condition for Deadlock
• No preemption: Once a process has obtained a
resources, the system cannot remove it from the
process control until the process has finished using
the resource.
1/11/2017 7Prof. Dhaval R. Chandarana
Necessary Condition for Deadlock
• Circular wait: A circular chain of hold and wait
condition exists in the system.
1/11/2017 8Prof. Dhaval R. Chandarana
Deadlock Detection
• Deadlock detection is the process of actually
determining that a deadlock exists and identifying
the processes and resources involved in the
deadlock.
• Detection of a cycle in WFG proceeds concurrently
with normal operation in main of deadlock
detection.
1/11/2017 9Prof. Dhaval R. Chandarana
Deadlock Prevention
• The deadlock prevention approach does not
allow any transaction to acquire locks that will
lead to deadlocks. The convention is that
when more than one transactions request for
locking the same data item, only one of them
is granted the lock.
• One of the most popular deadlock prevention
methods is pre-acquisition of all the locks.
1/11/2017 10Prof. Dhaval R. Chandarana
Deadlock Avoidance
• The deadlock avoidance approach handles deadlocks before they
occur. It analyzes the transactions and the locks to determine
whether or not waiting leads to a deadlock.
• There are two algorithms for this purpose, namely wait-die and
wound-wait.
• Let us assume that there are two transactions, T1 and T2, where T1
tries to lock a data item which is already locked by T2. The
algorithms are as follows −
• Wait-Die − If T1 is older than T2, T1 is allowed to wait. Otherwise, if
T1 is younger than T2, T1 is aborted and later restarted.
• Wound-Wait − If T1 is older than T2, T2 is aborted and later
restarted. Otherwise, if T1 is younger than T2, T1 is allowed to wait.
1/11/2017 11Prof. Dhaval R. Chandarana
Recovery in DBMS
• Recovery refers to restoring a system to its normal operation
state.
• Once a failure has occurred, it is essential that the process
where the failure happened can recover to correct state.
• Following are some solution on process recovery:
1. Reclaim resources allocated to process.
2. Undo modification made to database.
3. Restart the process.
4. Or Restart the process from point of failure and resume
execution.
1/11/2017 12Prof. Dhaval R. Chandarana
Concept of Recovery
Fault
Fault
Error
Valid
state
Erroneous state
1/11/2017 13Prof. Dhaval R. Chandarana
Concept of Recovery
• System failure: System does not meet requirements
• Erroneous system state: State which could lead to a system
failure by a sequence of valid state transitions.
• Error: the part of the system state which different from its
intended value.
• Fault: Abnormal physical condition. Eg, design errors,
manufacturing problems, damage, external disturbances.
1/11/2017 14Prof. Dhaval R. Chandarana
Classification of Failure
• In a distributed database system, we need to deal with four
types of failures: transaction failures (aborts), site (system)
failures, media (disk) failures, and communication line
failures.
• Some of these are due to hardware and others are due to
software.
• Software failures are typically caused by “bugs” in the code.
As stated before, most of the software failures are soft
failures.
1/11/2017 15Prof. Dhaval R. Chandarana
1 Transaction Failures
• Transactions can fail for a number of reasons. Failure can be
due to an error in the transaction caused by incorrect input
data as well as the detection of a present or potential
deadlock.
• some concurrency control algorithms do not permit a
transaction to proceed or even to wait if the data that they
attempt to access are currently being accessed by another
transaction. This might also be considered a failure.
1/11/2017 16Prof. Dhaval R. Chandarana
2 Site (System) Failures
• A system failure is always assumed to result in the loss of
main memory contents. Therefore, any part of the database
that was in main memory buffers is lost as a result of a system
failure.
• In distributed database terminology, system failures are
typically referred to as site failures, since they result in the
failed site being unreachable from other sites in the
distributed system.
• Total failure refers to the simultaneous failure of all sites in
the distributed system
• Partial failure indicates the failure of only some sites while
the others remain operational.
1/11/2017 17Prof. Dhaval R. Chandarana
3 Media Failures
• Media failure refers to the failures of the secondary storage
devices that store the database.
• Such failures may be due to operating system errors, as well
as to hardware faults such as head crashes or controller
failures.
• The important point from the perspective of DBMS reliability
is that all or part of the database that is on the secondary
storage is considered to be destroyed and inaccessible.
1/11/2017 18Prof. Dhaval R. Chandarana
4 Communication Failures
• Communication failures, however, are unique to the
distributed case.
• There are a number of types of communication failures. The
most common ones are the errors in the messages,
improperly ordered messages, lost (or undeliverable)
messages, and communication line failures.
• Lost or undeliverable messages are typically the consequence
of communication line failures or (destination) site failures.
• The detection will be facilitated by the use of timers and a
timeout mechanism that keeps track of how long it has been
since the sender site has not received a confirmation from the
destination site about the receipt of a message.
1/11/2017 19Prof. Dhaval R. Chandarana
Methods to control failure
• Failure affected transactions must be aborted.
• Site failure message is broadcasted to all sites.
• Checking must be done periodically to see whether the failed
site has recovered or not.
• After restarting the failure site, site must initiate a recovery
procedure to abort all partial transaction that were active at
the time of failure.
1/11/2017 20Prof. Dhaval R. Chandarana
Different techniques of recoverability
• The additional components and abnormal algorithm can be
added to a system these components and algorithms attempt
to ensure that occurrences of erroneous states do not result
in later system failure ideally, they removes these errors and
restore them to “correct” states from which normal
processing can continue. These additional component and
abnormal algorithm, called recovery technique.
 Backward and Forward Error Recovery
 Log Based Recovery
 Write-Ahead Logging Protocol
1/11/2017 21Prof. Dhaval R. Chandarana
Backward and Forward Error Recovery
Recovery
Forward-error Backward-error
Operational-base State-based
1/11/2017 22Prof. Dhaval R. Chandarana
Prof. Dhaval R. Chandarana 23
•Failure recovery: restore an erroneous state to an error-free state
•Approaches to failure recovery:
– Forward-error recovery:
• Remove errors in process/system state (if errors can be completely assessed)
• Continue process/system forward execution
– Backward-error recovery:
• Restore process/system to previous error-free state and restart from there
•Comparison: Forward vs. Backward error recovery
– Backward-error recovery
(+)Simple to implement
(+)Can be used as general recovery mechanism
(-) Performance penalty
(-) No guarantee that fault does not occur again
(-) Some components cannot be recovered
– Forward-error Recovery
(+)Less overhead
(-) Limited use, i.e. only when impact of faults understood
(-) Cannot be used as general mechanism for error recovery
Backward and Forward Error Recovery
1/11/2017
Prof. Dhaval R. Chandarana 24
•Principle: restore process/system to a known, error-free “recovery point”/ “checkpoint”.
•System model:
•Approaches:
(1) Operation-based approach
(2) State-based approach
Backward-Error Recovery: Basic approach
CPU
Main memory
secondary
storage
stable
storage
Storage that
maintains
information in
the event of
system failure
Bring object to MM
to be accessed
Store logs and
recovery points
Write object back
if modified
1/11/2017
Prof. Dhaval R. Chandarana 25
•Principle:
– Record all changes made to state of process (‘audit trail’ or ‘log’) such that process
can be returned to a previous state
– Example: A transaction based environment where transactions update a database
• It is possible to commit or undo updates on a per-transaction basis
• A commit indicates that the transaction on the object was successful and changes are
permanent
(1.a) Updating-in-place
• Principle: every update (write) operation to an object creates a log in stable storage
that can be used to ‘undo’ and ‘redo’ the operation
• Log content: object name, old object state, new object state
• Implementation of a recoverable update operation:
– Do operation: update object and write log record
– Undo operation: log(old) -> object (undoes the action performed by a do)
– Redo operation: log(new) -> object (redoes the action performed by a do)
– Display operation: display log record (optional)
• Problem: a ‘do’ cannot be recovered if system crashes after write object but before
log record write
(1.b) The write-ahead log protocol
• Principle: write log record before updating object
(1) The Operation-based Approach
1/11/2017
Prof. Dhaval R. Chandarana 26
•Principle: establish frequent ‘recovery points’ or ‘checkpoints’ saving the entire
state of process
•Actions:
– ‘Checkpointing’ or ‘taking a checkpoint’: saving process state
– ‘Rolling back’ a process: restoring a process to a prior state
Note: A process should be rolled back to the most recent ‘recovery point’ to
minimize the overhead and delays in the completion of the process
•Shadow Pages: Special case of state-based approach
– Only a part of the system state is saved to minimize recovery
– When an object is modified, page containing object is first copied on stable
storage (shadow page)
– If process successfully commits: shadow page discarded and modified page is
made part of the database
– If process fails: shadow page used and the modified page discarded
(2) State-based Approach
1/11/2017
Recovery in concurrent systems
• Issue: if one of a set of cooperating processes fails and has to be rolled back to a
recovery point, all processes it communicated with since the recovery point have to be
rolled back.
• Conclusion: In concurrent and/or distributed systems all cooperating processes have to
establish recovery points
• Orphan messages and the domino effect
– Case 1: failure of X after x3 : no impact on Y or Z
– Case 2: failure of Y after sending msg. ‘m’
• Y rolled back to y2
• ‘m’ ≡ orphan massage
• X rolled back to x2
– Case 3: failure of Z after z2
• Y has to roll back to y1
• X has to roll back to x1 Domino Effect
• Z has to roll back to z1
X
Y
Z
y1
x1
z1 z2
x2
y2
x3
m
Time
1/11/2017 27Prof. Dhaval R. Chandarana
Lost messages
• Assume that x1 and y1 are the only recovery points for processes X and Y, respectively
• Assume Y fails after receiving message ‘m’
• Y rolled back to y1,X rolled back to x1
• Message ‘m’ is lost
Note: there is no distinction between this case and the case where message ‘m’ is lost in
communication channel and processes X and Y are in states x1 and y1, respectively
X
Y y1
x1
m
Time
Failure
1/11/2017 28Prof. Dhaval R. Chandarana
Log Based Recovery
• When failures occur the following operation
that use the log are executed.
• UNDO: restore database to state prior to
execution.
• REDO: perform the changes to the database
over again.
1/11/2017 29Prof. Dhaval R. Chandarana
UNDO
1/11/2017 30Prof. Dhaval R. Chandarana
REDO
1/11/2017 31Prof. Dhaval R. Chandarana
Write-Ahead Logging Protocol
• write-ahead logging (WAL) is a family of techniques for
providing atomicity and durability in database systems.
• In a system using WAL, all modifications are written to a log
before they are applied. Usually both redo and undo information
is stored in the log.
• The purpose of this can be illustrated by an example. Imagine a
program that is in the middle of performing some operation
when the machine it is running on loses power. Upon restart,
that program might well need to know whether the operation it
was performing succeeded, half-succeeded, or failed. If a write-
ahead log is used, the program can check this log and compare
what it was supposed to be doing when it unexpectedly lost
power to what was actually done. On the basis of this
comparison, the program could decide to undo what it had
started, complete what it had started, or keep things as they are.1/11/2017 32Prof. Dhaval R. Chandarana
Write-Ahead Logging Protocol
1/11/2017 33Prof. Dhaval R. Chandarana
Advanced recovery techniques
• Shadow Paging
• Fuzzy checkpoint
• ARIES
• RAID levels
1/11/2017 34Prof. Dhaval R. Chandarana
Shadow Paging
• It is inconvenient to maintain logs of all
transactions for the purposes of recovery. An
alternative is to use a system of shadow
paging.
• This is where the database is divided into
pages that may be stored in any order on the
disk.
• In order to identify the location of any given
page, we use something called a page table.
1/11/2017 35Prof. Dhaval R. Chandarana
Shadow Paging
• During the life of a transaction two page tables
are maintained, one called a shadow page table
and current page table.
• When a transaction begins both of these page
tables point to the same locations (are identical).
• However during the lifetime of a transaction
changes may be made update values etc. So
whenever we update a page in the database we
always write the updated page to a new location.
• This means that when we then update our
current page table to reflect the changes that
have been made.
1/11/2017 36Prof. Dhaval R. Chandarana
Shadow Paging
1/11/2017 37Prof. Dhaval R. Chandarana
Fuzzy checkpoint
• In a fuzzy checkpoint, the database server does not flush
the modified pages in the shared-memory buffer pool to
disk for certain types of operations, called fuzzy
operations.
• When a fuzzy checkpoint completes, the pages might not
be consistent with each other, because the database
server does not flush all data pages to disk.
• A fuzzy checkpoint completes much more quickly than a
full checkpoint and reduces the amount of physical
logging during heavy update activity. When necessary,
the database server performs a full checkpoint to ensure
the physical consistency of all data on disk.
1/11/2017 38Prof. Dhaval R. Chandarana
Fuzzy checkpoint
• Fuzzy Operations
– Inserts
– Updates
– Deletes
• Important:
– Fuzzy checkpoints are disabled for the primary
and secondary servers in a High-Availability Data
Replication pair.
1/11/2017 39Prof. Dhaval R. Chandarana
ARIES
• In computer science, Algorithms for Recovery
and Isolation Exploiting Semantics, or ARIES
is a recovery algorithm designed to work with
a no-force, steal database approach; it is used
by IBM DB2, Microsoft SQL Server and many
other database systems.
1/11/2017 40Prof. Dhaval R. Chandarana
Principles lie behind ARIES
• Three main principles lie behind ARIES
• Write-ahead logging: Any change to an object is first
recorded in the log, and the log must be written to
stable storage before changes to the object are written
to disk.
• Repeating history during Redo: On restart after a
crash, ARIES retraces the actions of a database before
the crash and brings the system back to the exact state
that it was in before the crash. Then it undoes the
transactions still active at crash time.
• Logging changes during Undo: Changes made to the
database while undoing transactions are logged to
ensure such an action isn't repeated in the event of
repeated restarts.
1/11/2017 41Prof. Dhaval R. Chandarana
ARIES LSN
1/11/2017 42Prof. Dhaval R. Chandarana
RAID Level
Redundant Array of Inexpensive Disks
RAID Level 0 Striping
RAID Level 1
Mirroring and performance
improvements
RAID Level 2 Byte-level parity
RAID Level 3 Block-level parity
RAID Level 4 Rotating parity
RAID Level 5 Tolerates failure of two disk drives
1/11/2017 43Prof. Dhaval R. Chandarana
RAID Level-0
file data block 1block 0 block 2 block 3 block 4
Disk 0 Disk 1
0 block 0
1 block 2
2 block 4
3
4
5
sectors
0 block 1
1 block 3
2
3
4
5
sectors
1/11/2017 44Prof. Dhaval R. Chandarana
RAID Level-1
file data block 1block 0 block 2 block 3 block 4
Disk 0 Disk 1
0 block 0
1 block 1
2 block 2
3 block 3
4 block 4
5
sectors
0 block 0
1 block 1
2 block 2
3 block 3
4 block 4
5
sectors
1/11/2017 45Prof. Dhaval R. Chandarana
RAID Level - 2
• RAID Level 2 uses concept of parallel access
technique. It works on the word(byte) level. So
each strip stores one bit. It takes data striping to
the extreme, writing only 1 bit per strip, instead
of in arbitrary size block. For this reason, it
require a minimum, of 8 surface to write data to
the hard disk.
• In RAID level 2, strip are very small, so when a
block is read, all disks are accessed in parallel.
• Hamming code generation is time consuming,
therefore RAID level 2 is too slow for most
commercial application.
1/11/2017 46Prof. Dhaval R. Chandarana
RAID Level - 2
Error Correction Code (ECC)
1/11/2017 47Prof. Dhaval R. Chandarana
RAID Level - 3
1/11/2017 48Prof. Dhaval R. Chandarana
RAID Level - 4
1/11/2017 49Prof. Dhaval R. Chandarana
RAID Level - 5
1/11/2017 50Prof. Dhaval R. Chandarana
RAID Level - 6
1/11/2017 51Prof. Dhaval R. Chandarana
TwoPhaseCommitProtocols
1/11/2017 52Prof. Dhaval R. Chandarana
State Transitions in 2PC Protocol
1/11/2017 53Prof. Dhaval R. Chandarana
Three Phase Commit Protocols
1/11/2017 54Prof. Dhaval R. Chandarana
State Transitions in 3PC Protocol
1/11/2017 55Prof. Dhaval R. Chandarana

Weitere ähnliche Inhalte

Was ist angesagt?

17. Recovery System in DBMS
17. Recovery System in DBMS17. Recovery System in DBMS
17. Recovery System in DBMS
koolkampus
 
Deadlock in distribute system by saeed siddik
Deadlock in distribute system by saeed siddikDeadlock in distribute system by saeed siddik
Deadlock in distribute system by saeed siddik
Saeed Siddik
 
Database , 12 Reliability
Database , 12 ReliabilityDatabase , 12 Reliability
Database , 12 Reliability
Ali Usman
 
deadlock avoidance
deadlock avoidancedeadlock avoidance
deadlock avoidance
wahab13
 

Was ist angesagt? (20)

Distributed datababase Transaction and concurrency control
Distributed datababase Transaction and concurrency controlDistributed datababase Transaction and concurrency control
Distributed datababase Transaction and concurrency control
 
Operating Systems - "Chapter 5 Process Synchronization"
Operating Systems - "Chapter 5 Process Synchronization"Operating Systems - "Chapter 5 Process Synchronization"
Operating Systems - "Chapter 5 Process Synchronization"
 
Transactions and Concurrency Control
Transactions and Concurrency ControlTransactions and Concurrency Control
Transactions and Concurrency Control
 
Deadlock in Operating System
Deadlock in Operating SystemDeadlock in Operating System
Deadlock in Operating System
 
Deadlock Avoidance in Operating System
Deadlock Avoidance in Operating SystemDeadlock Avoidance in Operating System
Deadlock Avoidance in Operating System
 
BANKER'S ALGORITHM
BANKER'S ALGORITHMBANKER'S ALGORITHM
BANKER'S ALGORITHM
 
Deadlock in Distributed Systems
Deadlock in Distributed SystemsDeadlock in Distributed Systems
Deadlock in Distributed Systems
 
Query processing in Distributed Database System
Query processing in Distributed Database SystemQuery processing in Distributed Database System
Query processing in Distributed Database System
 
RAID
RAIDRAID
RAID
 
17. Recovery System in DBMS
17. Recovery System in DBMS17. Recovery System in DBMS
17. Recovery System in DBMS
 
Database recovery
Database recoveryDatabase recovery
Database recovery
 
Deadlock management
Deadlock managementDeadlock management
Deadlock management
 
Lec 7 query processing
Lec 7 query processingLec 7 query processing
Lec 7 query processing
 
Deadlock in distribute system by saeed siddik
Deadlock in distribute system by saeed siddikDeadlock in distribute system by saeed siddik
Deadlock in distribute system by saeed siddik
 
2 PHASE COMMIT PROTOCOL
2 PHASE COMMIT PROTOCOL2 PHASE COMMIT PROTOCOL
2 PHASE COMMIT PROTOCOL
 
Database , 12 Reliability
Database , 12 ReliabilityDatabase , 12 Reliability
Database , 12 Reliability
 
data replication
data replicationdata replication
data replication
 
deadlock avoidance
deadlock avoidancedeadlock avoidance
deadlock avoidance
 
Concurrency Control in Database Management System
Concurrency Control in Database Management SystemConcurrency Control in Database Management System
Concurrency Control in Database Management System
 
OS - Deadlock
OS - DeadlockOS - Deadlock
OS - Deadlock
 

Ähnlich wie Distributed DBMS - Unit 9 - Distributed Deadlock & Recovery

database recovery techniques
database recovery techniques database recovery techniques
database recovery techniques
Kalhan Liyanage
 
Fault tolerance in distributed systems
Fault tolerance in distributed systemsFault tolerance in distributed systems
Fault tolerance in distributed systems
sumitjain2013
 
Process Synchronization And Deadlocks
Process Synchronization And DeadlocksProcess Synchronization And Deadlocks
Process Synchronization And Deadlocks
tech2click
 

Ähnlich wie Distributed DBMS - Unit 9 - Distributed Deadlock & Recovery (20)

Guide on Raid Data Recovery
Guide on Raid Data RecoveryGuide on Raid Data Recovery
Guide on Raid Data Recovery
 
OS 7.pptx
OS 7.pptxOS 7.pptx
OS 7.pptx
 
Fazal rafi.. database concurancy control and recovery
Fazal rafi.. database concurancy control and recoveryFazal rafi.. database concurancy control and recovery
Fazal rafi.. database concurancy control and recovery
 
database recovery techniques
database recovery techniques database recovery techniques
database recovery techniques
 
Oracle EBS Production Support - Recommendations
Oracle EBS Production Support - RecommendationsOracle EBS Production Support - Recommendations
Oracle EBS Production Support - Recommendations
 
recovery management with concurrent controls
recovery management with concurrent controlsrecovery management with concurrent controls
recovery management with concurrent controls
 
recovery management
recovery managementrecovery management
recovery management
 
The Database Environment Chapter 12
The Database Environment Chapter 12The Database Environment Chapter 12
The Database Environment Chapter 12
 
Performance Tuning
Performance TuningPerformance Tuning
Performance Tuning
 
Fault tolerance in distributed systems
Fault tolerance in distributed systemsFault tolerance in distributed systems
Fault tolerance in distributed systems
 
Operating system Interview Questions
Operating system Interview QuestionsOperating system Interview Questions
Operating system Interview Questions
 
What is Database Backup? The 3 Important Recovery Techniques from transaction...
What is Database Backup? The 3 Important Recovery Techniques from transaction...What is Database Backup? The 3 Important Recovery Techniques from transaction...
What is Database Backup? The 3 Important Recovery Techniques from transaction...
 
Fault tolerant presentation
Fault tolerant presentationFault tolerant presentation
Fault tolerant presentation
 
UNIT I-Processes.pptx
UNIT I-Processes.pptxUNIT I-Processes.pptx
UNIT I-Processes.pptx
 
SVCC-2014
SVCC-2014SVCC-2014
SVCC-2014
 
Crash recovery in database
Crash recovery in databaseCrash recovery in database
Crash recovery in database
 
Process Synchronization And Deadlocks
Process Synchronization And DeadlocksProcess Synchronization And Deadlocks
Process Synchronization And Deadlocks
 
dbms.ppt
dbms.pptdbms.ppt
dbms.ppt
 
dbms.ppt
dbms.pptdbms.ppt
dbms.ppt
 
What is Database Management System
What is Database Management SystemWhat is Database Management System
What is Database Management System
 

Mehr von Gyanmanjari Institute Of Technology

Mehr von Gyanmanjari Institute Of Technology (20)

WD - Unit - 7 - Advanced Concepts
WD - Unit - 7 - Advanced ConceptsWD - Unit - 7 - Advanced Concepts
WD - Unit - 7 - Advanced Concepts
 
WD - Unit - 4 - PHP Basics
WD - Unit - 4 - PHP BasicsWD - Unit - 4 - PHP Basics
WD - Unit - 4 - PHP Basics
 
WD - Unit - 3 - Java Script
WD - Unit - 3 - Java ScriptWD - Unit - 3 - Java Script
WD - Unit - 3 - Java Script
 
WD - Unit - 6 - Database Connectivity using PHP
WD - Unit - 6 - Database Connectivity using PHPWD - Unit - 6 - Database Connectivity using PHP
WD - Unit - 6 - Database Connectivity using PHP
 
WD - Unit - 5 - Session and State Management using PHP
WD - Unit - 5 - Session and State Management using PHPWD - Unit - 5 - Session and State Management using PHP
WD - Unit - 5 - Session and State Management using PHP
 
WD - Unit - 2 - HTML & CSS
WD - Unit - 2 - HTML & CSSWD - Unit - 2 - HTML & CSS
WD - Unit - 2 - HTML & CSS
 
WD - Unit - 1 - Introduction
WD - Unit - 1 - IntroductionWD - Unit - 1 - Introduction
WD - Unit - 1 - Introduction
 
OSV - Unit - 8 - Unix/Linux Operating System
OSV - Unit - 8 - Unix/Linux Operating SystemOSV - Unit - 8 - Unix/Linux Operating System
OSV - Unit - 8 - Unix/Linux Operating System
 
OSV - Unit - 10 - Approaches to Virtualization
OSV - Unit - 10 - Approaches to VirtualizationOSV - Unit - 10 - Approaches to Virtualization
OSV - Unit - 10 - Approaches to Virtualization
 
OSV - Unit - 9 - Virtualization Concepts
OSV - Unit - 9 - Virtualization ConceptsOSV - Unit - 9 - Virtualization Concepts
OSV - Unit - 9 - Virtualization Concepts
 
OSV - Unit - 7 - I/O Management & Disk scheduling
OSV - Unit - 7 - I/O Management & Disk schedulingOSV - Unit - 7 - I/O Management & Disk scheduling
OSV - Unit - 7 - I/O Management & Disk scheduling
 
OSV - Unit - 6 - Memory Management
OSV - Unit - 6 - Memory ManagementOSV - Unit - 6 - Memory Management
OSV - Unit - 6 - Memory Management
 
CNS - Unit - 10 - Web Security Threats and Approaches
CNS - Unit - 10 - Web Security Threats and ApproachesCNS - Unit - 10 - Web Security Threats and Approaches
CNS - Unit - 10 - Web Security Threats and Approaches
 
OSV - Unit - 5 - Deadlock
OSV - Unit - 5 - DeadlockOSV - Unit - 5 - Deadlock
OSV - Unit - 5 - Deadlock
 
OSV - Unit - 4 - Inter Process Communication
OSV - Unit - 4 - Inter Process CommunicationOSV - Unit - 4 - Inter Process Communication
OSV - Unit - 4 - Inter Process Communication
 
OSV - Unit - 3 - Concurrency
OSV - Unit - 3 - ConcurrencyOSV - Unit - 3 - Concurrency
OSV - Unit - 3 - Concurrency
 
OSV - Unit - 2 - Process and Threads Management
OSV - Unit - 2 - Process and Threads ManagementOSV - Unit - 2 - Process and Threads Management
OSV - Unit - 2 - Process and Threads Management
 
CNS - Unit - 8 - Key Management and Distribution
CNS - Unit - 8 - Key Management and DistributionCNS - Unit - 8 - Key Management and Distribution
CNS - Unit - 8 - Key Management and Distribution
 
CNS - Unit - 7 - Digital Signature
CNS - Unit - 7 - Digital SignatureCNS - Unit - 7 - Digital Signature
CNS - Unit - 7 - Digital Signature
 
CNS - Unit - 6 - Message Authentication Code
CNS - Unit - 6 - Message Authentication CodeCNS - Unit - 6 - Message Authentication Code
CNS - Unit - 6 - Message Authentication Code
 

Kürzlich hochgeladen

Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Dr.Costas Sachpazis
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
Tonystark477637
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 

Kürzlich hochgeladen (20)

Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Vivazz, Mieres Social Housing Design Spain
Vivazz, Mieres Social Housing Design SpainVivazz, Mieres Social Housing Design Spain
Vivazz, Mieres Social Housing Design Spain
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 

Distributed DBMS - Unit 9 - Distributed Deadlock & Recovery

  • 1. Unit – 9 Distributed Deadlock & Recovery
  • 2. Outlines.. • Deadlock in Distributed Systems • Recovery in DBMS • Advanced recovery techniques – Shadow Paging – Fuzzy checkpoint – ARIES – RAID levels • Two Phase and Three Phase commit protocols 1/11/2017 2Prof. Dhaval R. Chandarana
  • 3. Deadlock • A deadlock can occur because transactions wait for one another. Informally, a deadlock situation is a set of requests that can never be granted by the concurrency control mechanism. • A deadlock can be indicated by a cycle in the wait- for-graph (WFG). • In computer science, deadlock refers to a specific condition when two or more processes are each waiting for another to release a resource, or more than two processes are waiting for resources in a circular chain. 1/11/2017 3Prof. Dhaval R. Chandarana
  • 5. Necessary Condition for Deadlock • Mutual exclusion: A resource may be acquired exclusively by only one process at a time. 1/11/2017 5Prof. Dhaval R. Chandarana
  • 6. Necessary Condition for Deadlock • Hold and wait: Processes currently holding resources that were granted earlier can request new resources. 1/11/2017 6Prof. Dhaval R. Chandarana
  • 7. Necessary Condition for Deadlock • No preemption: Once a process has obtained a resources, the system cannot remove it from the process control until the process has finished using the resource. 1/11/2017 7Prof. Dhaval R. Chandarana
  • 8. Necessary Condition for Deadlock • Circular wait: A circular chain of hold and wait condition exists in the system. 1/11/2017 8Prof. Dhaval R. Chandarana
  • 9. Deadlock Detection • Deadlock detection is the process of actually determining that a deadlock exists and identifying the processes and resources involved in the deadlock. • Detection of a cycle in WFG proceeds concurrently with normal operation in main of deadlock detection. 1/11/2017 9Prof. Dhaval R. Chandarana
  • 10. Deadlock Prevention • The deadlock prevention approach does not allow any transaction to acquire locks that will lead to deadlocks. The convention is that when more than one transactions request for locking the same data item, only one of them is granted the lock. • One of the most popular deadlock prevention methods is pre-acquisition of all the locks. 1/11/2017 10Prof. Dhaval R. Chandarana
  • 11. Deadlock Avoidance • The deadlock avoidance approach handles deadlocks before they occur. It analyzes the transactions and the locks to determine whether or not waiting leads to a deadlock. • There are two algorithms for this purpose, namely wait-die and wound-wait. • Let us assume that there are two transactions, T1 and T2, where T1 tries to lock a data item which is already locked by T2. The algorithms are as follows − • Wait-Die − If T1 is older than T2, T1 is allowed to wait. Otherwise, if T1 is younger than T2, T1 is aborted and later restarted. • Wound-Wait − If T1 is older than T2, T2 is aborted and later restarted. Otherwise, if T1 is younger than T2, T1 is allowed to wait. 1/11/2017 11Prof. Dhaval R. Chandarana
  • 12. Recovery in DBMS • Recovery refers to restoring a system to its normal operation state. • Once a failure has occurred, it is essential that the process where the failure happened can recover to correct state. • Following are some solution on process recovery: 1. Reclaim resources allocated to process. 2. Undo modification made to database. 3. Restart the process. 4. Or Restart the process from point of failure and resume execution. 1/11/2017 12Prof. Dhaval R. Chandarana
  • 13. Concept of Recovery Fault Fault Error Valid state Erroneous state 1/11/2017 13Prof. Dhaval R. Chandarana
  • 14. Concept of Recovery • System failure: System does not meet requirements • Erroneous system state: State which could lead to a system failure by a sequence of valid state transitions. • Error: the part of the system state which different from its intended value. • Fault: Abnormal physical condition. Eg, design errors, manufacturing problems, damage, external disturbances. 1/11/2017 14Prof. Dhaval R. Chandarana
  • 15. Classification of Failure • In a distributed database system, we need to deal with four types of failures: transaction failures (aborts), site (system) failures, media (disk) failures, and communication line failures. • Some of these are due to hardware and others are due to software. • Software failures are typically caused by “bugs” in the code. As stated before, most of the software failures are soft failures. 1/11/2017 15Prof. Dhaval R. Chandarana
  • 16. 1 Transaction Failures • Transactions can fail for a number of reasons. Failure can be due to an error in the transaction caused by incorrect input data as well as the detection of a present or potential deadlock. • some concurrency control algorithms do not permit a transaction to proceed or even to wait if the data that they attempt to access are currently being accessed by another transaction. This might also be considered a failure. 1/11/2017 16Prof. Dhaval R. Chandarana
  • 17. 2 Site (System) Failures • A system failure is always assumed to result in the loss of main memory contents. Therefore, any part of the database that was in main memory buffers is lost as a result of a system failure. • In distributed database terminology, system failures are typically referred to as site failures, since they result in the failed site being unreachable from other sites in the distributed system. • Total failure refers to the simultaneous failure of all sites in the distributed system • Partial failure indicates the failure of only some sites while the others remain operational. 1/11/2017 17Prof. Dhaval R. Chandarana
  • 18. 3 Media Failures • Media failure refers to the failures of the secondary storage devices that store the database. • Such failures may be due to operating system errors, as well as to hardware faults such as head crashes or controller failures. • The important point from the perspective of DBMS reliability is that all or part of the database that is on the secondary storage is considered to be destroyed and inaccessible. 1/11/2017 18Prof. Dhaval R. Chandarana
  • 19. 4 Communication Failures • Communication failures, however, are unique to the distributed case. • There are a number of types of communication failures. The most common ones are the errors in the messages, improperly ordered messages, lost (or undeliverable) messages, and communication line failures. • Lost or undeliverable messages are typically the consequence of communication line failures or (destination) site failures. • The detection will be facilitated by the use of timers and a timeout mechanism that keeps track of how long it has been since the sender site has not received a confirmation from the destination site about the receipt of a message. 1/11/2017 19Prof. Dhaval R. Chandarana
  • 20. Methods to control failure • Failure affected transactions must be aborted. • Site failure message is broadcasted to all sites. • Checking must be done periodically to see whether the failed site has recovered or not. • After restarting the failure site, site must initiate a recovery procedure to abort all partial transaction that were active at the time of failure. 1/11/2017 20Prof. Dhaval R. Chandarana
  • 21. Different techniques of recoverability • The additional components and abnormal algorithm can be added to a system these components and algorithms attempt to ensure that occurrences of erroneous states do not result in later system failure ideally, they removes these errors and restore them to “correct” states from which normal processing can continue. These additional component and abnormal algorithm, called recovery technique.  Backward and Forward Error Recovery  Log Based Recovery  Write-Ahead Logging Protocol 1/11/2017 21Prof. Dhaval R. Chandarana
  • 22. Backward and Forward Error Recovery Recovery Forward-error Backward-error Operational-base State-based 1/11/2017 22Prof. Dhaval R. Chandarana
  • 23. Prof. Dhaval R. Chandarana 23 •Failure recovery: restore an erroneous state to an error-free state •Approaches to failure recovery: – Forward-error recovery: • Remove errors in process/system state (if errors can be completely assessed) • Continue process/system forward execution – Backward-error recovery: • Restore process/system to previous error-free state and restart from there •Comparison: Forward vs. Backward error recovery – Backward-error recovery (+)Simple to implement (+)Can be used as general recovery mechanism (-) Performance penalty (-) No guarantee that fault does not occur again (-) Some components cannot be recovered – Forward-error Recovery (+)Less overhead (-) Limited use, i.e. only when impact of faults understood (-) Cannot be used as general mechanism for error recovery Backward and Forward Error Recovery 1/11/2017
  • 24. Prof. Dhaval R. Chandarana 24 •Principle: restore process/system to a known, error-free “recovery point”/ “checkpoint”. •System model: •Approaches: (1) Operation-based approach (2) State-based approach Backward-Error Recovery: Basic approach CPU Main memory secondary storage stable storage Storage that maintains information in the event of system failure Bring object to MM to be accessed Store logs and recovery points Write object back if modified 1/11/2017
  • 25. Prof. Dhaval R. Chandarana 25 •Principle: – Record all changes made to state of process (‘audit trail’ or ‘log’) such that process can be returned to a previous state – Example: A transaction based environment where transactions update a database • It is possible to commit or undo updates on a per-transaction basis • A commit indicates that the transaction on the object was successful and changes are permanent (1.a) Updating-in-place • Principle: every update (write) operation to an object creates a log in stable storage that can be used to ‘undo’ and ‘redo’ the operation • Log content: object name, old object state, new object state • Implementation of a recoverable update operation: – Do operation: update object and write log record – Undo operation: log(old) -> object (undoes the action performed by a do) – Redo operation: log(new) -> object (redoes the action performed by a do) – Display operation: display log record (optional) • Problem: a ‘do’ cannot be recovered if system crashes after write object but before log record write (1.b) The write-ahead log protocol • Principle: write log record before updating object (1) The Operation-based Approach 1/11/2017
  • 26. Prof. Dhaval R. Chandarana 26 •Principle: establish frequent ‘recovery points’ or ‘checkpoints’ saving the entire state of process •Actions: – ‘Checkpointing’ or ‘taking a checkpoint’: saving process state – ‘Rolling back’ a process: restoring a process to a prior state Note: A process should be rolled back to the most recent ‘recovery point’ to minimize the overhead and delays in the completion of the process •Shadow Pages: Special case of state-based approach – Only a part of the system state is saved to minimize recovery – When an object is modified, page containing object is first copied on stable storage (shadow page) – If process successfully commits: shadow page discarded and modified page is made part of the database – If process fails: shadow page used and the modified page discarded (2) State-based Approach 1/11/2017
  • 27. Recovery in concurrent systems • Issue: if one of a set of cooperating processes fails and has to be rolled back to a recovery point, all processes it communicated with since the recovery point have to be rolled back. • Conclusion: In concurrent and/or distributed systems all cooperating processes have to establish recovery points • Orphan messages and the domino effect – Case 1: failure of X after x3 : no impact on Y or Z – Case 2: failure of Y after sending msg. ‘m’ • Y rolled back to y2 • ‘m’ ≡ orphan massage • X rolled back to x2 – Case 3: failure of Z after z2 • Y has to roll back to y1 • X has to roll back to x1 Domino Effect • Z has to roll back to z1 X Y Z y1 x1 z1 z2 x2 y2 x3 m Time 1/11/2017 27Prof. Dhaval R. Chandarana
  • 28. Lost messages • Assume that x1 and y1 are the only recovery points for processes X and Y, respectively • Assume Y fails after receiving message ‘m’ • Y rolled back to y1,X rolled back to x1 • Message ‘m’ is lost Note: there is no distinction between this case and the case where message ‘m’ is lost in communication channel and processes X and Y are in states x1 and y1, respectively X Y y1 x1 m Time Failure 1/11/2017 28Prof. Dhaval R. Chandarana
  • 29. Log Based Recovery • When failures occur the following operation that use the log are executed. • UNDO: restore database to state prior to execution. • REDO: perform the changes to the database over again. 1/11/2017 29Prof. Dhaval R. Chandarana
  • 32. Write-Ahead Logging Protocol • write-ahead logging (WAL) is a family of techniques for providing atomicity and durability in database systems. • In a system using WAL, all modifications are written to a log before they are applied. Usually both redo and undo information is stored in the log. • The purpose of this can be illustrated by an example. Imagine a program that is in the middle of performing some operation when the machine it is running on loses power. Upon restart, that program might well need to know whether the operation it was performing succeeded, half-succeeded, or failed. If a write- ahead log is used, the program can check this log and compare what it was supposed to be doing when it unexpectedly lost power to what was actually done. On the basis of this comparison, the program could decide to undo what it had started, complete what it had started, or keep things as they are.1/11/2017 32Prof. Dhaval R. Chandarana
  • 33. Write-Ahead Logging Protocol 1/11/2017 33Prof. Dhaval R. Chandarana
  • 34. Advanced recovery techniques • Shadow Paging • Fuzzy checkpoint • ARIES • RAID levels 1/11/2017 34Prof. Dhaval R. Chandarana
  • 35. Shadow Paging • It is inconvenient to maintain logs of all transactions for the purposes of recovery. An alternative is to use a system of shadow paging. • This is where the database is divided into pages that may be stored in any order on the disk. • In order to identify the location of any given page, we use something called a page table. 1/11/2017 35Prof. Dhaval R. Chandarana
  • 36. Shadow Paging • During the life of a transaction two page tables are maintained, one called a shadow page table and current page table. • When a transaction begins both of these page tables point to the same locations (are identical). • However during the lifetime of a transaction changes may be made update values etc. So whenever we update a page in the database we always write the updated page to a new location. • This means that when we then update our current page table to reflect the changes that have been made. 1/11/2017 36Prof. Dhaval R. Chandarana
  • 37. Shadow Paging 1/11/2017 37Prof. Dhaval R. Chandarana
  • 38. Fuzzy checkpoint • In a fuzzy checkpoint, the database server does not flush the modified pages in the shared-memory buffer pool to disk for certain types of operations, called fuzzy operations. • When a fuzzy checkpoint completes, the pages might not be consistent with each other, because the database server does not flush all data pages to disk. • A fuzzy checkpoint completes much more quickly than a full checkpoint and reduces the amount of physical logging during heavy update activity. When necessary, the database server performs a full checkpoint to ensure the physical consistency of all data on disk. 1/11/2017 38Prof. Dhaval R. Chandarana
  • 39. Fuzzy checkpoint • Fuzzy Operations – Inserts – Updates – Deletes • Important: – Fuzzy checkpoints are disabled for the primary and secondary servers in a High-Availability Data Replication pair. 1/11/2017 39Prof. Dhaval R. Chandarana
  • 40. ARIES • In computer science, Algorithms for Recovery and Isolation Exploiting Semantics, or ARIES is a recovery algorithm designed to work with a no-force, steal database approach; it is used by IBM DB2, Microsoft SQL Server and many other database systems. 1/11/2017 40Prof. Dhaval R. Chandarana
  • 41. Principles lie behind ARIES • Three main principles lie behind ARIES • Write-ahead logging: Any change to an object is first recorded in the log, and the log must be written to stable storage before changes to the object are written to disk. • Repeating history during Redo: On restart after a crash, ARIES retraces the actions of a database before the crash and brings the system back to the exact state that it was in before the crash. Then it undoes the transactions still active at crash time. • Logging changes during Undo: Changes made to the database while undoing transactions are logged to ensure such an action isn't repeated in the event of repeated restarts. 1/11/2017 41Prof. Dhaval R. Chandarana
  • 42. ARIES LSN 1/11/2017 42Prof. Dhaval R. Chandarana
  • 43. RAID Level Redundant Array of Inexpensive Disks RAID Level 0 Striping RAID Level 1 Mirroring and performance improvements RAID Level 2 Byte-level parity RAID Level 3 Block-level parity RAID Level 4 Rotating parity RAID Level 5 Tolerates failure of two disk drives 1/11/2017 43Prof. Dhaval R. Chandarana
  • 44. RAID Level-0 file data block 1block 0 block 2 block 3 block 4 Disk 0 Disk 1 0 block 0 1 block 2 2 block 4 3 4 5 sectors 0 block 1 1 block 3 2 3 4 5 sectors 1/11/2017 44Prof. Dhaval R. Chandarana
  • 45. RAID Level-1 file data block 1block 0 block 2 block 3 block 4 Disk 0 Disk 1 0 block 0 1 block 1 2 block 2 3 block 3 4 block 4 5 sectors 0 block 0 1 block 1 2 block 2 3 block 3 4 block 4 5 sectors 1/11/2017 45Prof. Dhaval R. Chandarana
  • 46. RAID Level - 2 • RAID Level 2 uses concept of parallel access technique. It works on the word(byte) level. So each strip stores one bit. It takes data striping to the extreme, writing only 1 bit per strip, instead of in arbitrary size block. For this reason, it require a minimum, of 8 surface to write data to the hard disk. • In RAID level 2, strip are very small, so when a block is read, all disks are accessed in parallel. • Hamming code generation is time consuming, therefore RAID level 2 is too slow for most commercial application. 1/11/2017 46Prof. Dhaval R. Chandarana
  • 47. RAID Level - 2 Error Correction Code (ECC) 1/11/2017 47Prof. Dhaval R. Chandarana
  • 48. RAID Level - 3 1/11/2017 48Prof. Dhaval R. Chandarana
  • 49. RAID Level - 4 1/11/2017 49Prof. Dhaval R. Chandarana
  • 50. RAID Level - 5 1/11/2017 50Prof. Dhaval R. Chandarana
  • 51. RAID Level - 6 1/11/2017 51Prof. Dhaval R. Chandarana
  • 53. State Transitions in 2PC Protocol 1/11/2017 53Prof. Dhaval R. Chandarana
  • 54. Three Phase Commit Protocols 1/11/2017 54Prof. Dhaval R. Chandarana
  • 55. State Transitions in 3PC Protocol 1/11/2017 55Prof. Dhaval R. Chandarana