Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.

Slides:



Advertisements
Similar presentations
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.
Advertisements

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.
Transaction Management: Concurrency Control CS634 Class 17, Apr 7, 2014 Slides based on “Database Management Systems” 3 rd ed, Ramakrishnan and Gehrke.
1 Part V: Transactions, Concurrency control, Scheduling, and Recovery.
Topic 6.3: Transactions and Concurrency Control Hari Uday.
1 Transaction Management Overview Chapter Transactions  Concurrent execution of user programs is essential for good DBMS performance.  Because.
Transaction Management Overview. Transactions Concurrent execution of user programs is essential for good DBMS performance. –Because disk accesses are.
Transaction Management Overview R & G Chapter 16 There are three side effects of acid. Enhanced long term memory, decreased short term memory, and I forget.
ICS 421 Spring 2010 Transactions & Concurrency Control (i) Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa.
Transaction Management Overview R & G Chapter 16 There are three side effects of acid. Enhanced long term memory, decreased short term memory, and I forget.
Transaction Management and Concurrency Control
1 Concurrency Control and Recovery Module 6, Lecture 1.
Transaction Management Overview R & G Chapter 16 There are three side effects of acid. Enhanced long term memory, decreased short term memory, and I forget.
1 Transaction Management Overview Yanlei Diao UMass Amherst March 15, 2007 Slides Courtesy of R. Ramakrishnan and J. Gehrke.
Final Exam Review Last Lecture R&G - All Chapters Covered The end crowns all, And that old common arbitrator, Time, Will one day end it. William Shakespeare.
1 Lecture 08: Transaction management overview
Transaction Management and Concurre cy Overview R & G Chapter There are three side effects of acid. Enhanced long term memory, decreased short term.
Transaction Processing
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 10 Transaction Management and Concurrency Control.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.
1 Transaction Management Overview Chapter Transactions  Concurrent execution of user programs is essential for good DBMS performance.  Because.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.
1 Transaction Management Overview Chapter Transactions  A transaction is the DBMS’s abstract view of a user program: a sequence of reads and writes.
Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 18.
BIS Database Systems School of Management, Business Information Systems, Assumption University A.Thanop Somprasong Chapter # 10 Transaction Management.
Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Lecture 21 Ramakrishnan - Chapter 18.
Concurrency Control R &G - Chapter 19. Transactions Concurrent execution of user programs is essential for good DBMS performance. – Because disk accesses.
Database Systems/COMP4910/Spring05/Melikyan1 Transaction Management Overview Unit 2 Chapter 16.
1 Transaction Management Overview Chapter Transactions  Concurrent execution of user programs is essential for good DBMS performance.  Because.
1 Transaction Processing Chapter Transaction Concept A transaction is a unit of program execution that accesses and possibly updates various data.
1 Concurrency Control II: Locking and Isolation Levels.
Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Instructor: Xintao Wu.
CMPT 354, Simon Fraser University, Fall 2008, Martin Ester 136 Database Systems I SQL Modifications and Transactions.
ICS 321 Fall 2011 The Database Language SQL (iv) Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa 10/26/20111Lipyeow.
1 Concurrency Control Lecture 22 Ramakrishnan - Chapter 19.
Transaction Management Overview. Transactions Concurrent execution of user programs is essential for good DBMS performance. – Because disk accesses are.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 18.
Overview of Transaction Management
Transaction Management and Recovery, 2 nd Edition. R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 18.
1 Database Systems ( 資料庫系統 ) December 27/28, 2006 Lecture 13 Merry Christmas & New Year.
H.Lu/HKUST L06: Concurrency Control & Locking. L06: Concurrency Control & Locking - 2 H.Lu/HKUST Transactions  Concurrent execution of user programs.
Chapter 13 Managing Transactions and Concurrency Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition.
MULTIUSER DATABASES : Concurrency and Transaction Management.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.
1 Database Systems ( 資料庫系統 ) December 20, 2004 Chapter 16 By Hao-hua Chu ( 朱浩華 )
1 Concurrency Control. 2 Why Have Concurrent Processes? v Better transaction throughput, response time v Done via better utilization of resources: –While.
Database Systems (資料庫系統)
Transaction Management Overview
Database Systems (資料庫系統)
Transaction Management Overview
Transaction Management
Transaction Management Overview
CS122B: Projects in Databases and Web Applications Winter 2018
Transaction Management Overview
Transaction Management Overview
Transaction Management Overview
Transaction Management
Transaction Management Overview
Chapter 10 Transaction Management and Concurrency Control
Lecture 21: Concurrency & Locking
Lecture 21: Intro to Transactions & Logging III
Transaction Management
Database Management systems Subject Code: 10CS54 Prepared By:
Transaction Management Overview
Transaction Management Overview
CS122B: Projects in Databases and Web Applications Winter 2019
CS122B: Projects in Databases and Web Applications Spring 2018
Transaction Management Overview
Presentation transcript:

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke2 Transactions  Concurrent execution of user programs is essential for good DBMS performance.  Because disk accesses are frequent, and relatively slow, it is important to keep the CPU humming by working on several user programs concurrently.  A user’s program may carry out many operations on the data retrieved from the database, but the DBMS is only concerned about what data is read/written from/to the database.  A transaction is the DBMS’s abstract view of a user program: a sequence of reads and writes.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke3 Concurrency in a DBMS  Users submit transactions, and can think of each transaction as executing by itself.  Concurrency is achieved by the DBMS, which interleaves actions (reads/writes of DB objects) of various transactions.  Each transaction must leave the database in a consistent state if the DB is consistent when the transaction begins. DBMS will enforce some ICs, depending on the ICs declared in CREATE TABLE statements. Beyond this, the DBMS does not really understand the semantics of the data. (e.g., it does not understand how the interest on a bank account is computed).  Issues: Effect of interleaving transactions, and crashes.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke4 The ACID Properties  Atomicity: Either all actions in a transaction are carried out or none are.  Each transaction, run by itself with no concurrent execution of other transactions, must preserve the consistency of the database.  Isolation: Users should be able to understand a transaction without considering the effect of other concurrently executing transactions.  Durability: Once a transaction has been successfully completed, its effects should persist even if the system crashes before all its changes are reflected on disk.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke5 Atomicity of Transactions  A transaction might commit after completing all its actions, or it could abort (or be aborted by the DBMS) after executing some actions.  A very important property guaranteed by the DBMS for all transactions is that they are atomic. That is, a user can think of a Xact as always executing all its actions in one step, or not executing any actions at all.  DBMS logs all actions so that it can undo the actions of aborted transactions.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke6 ACID  Consistency and Isolation  DBMS cannot detect inconsistencies due to errors in the user program’s logic.  The isolation property guarantees that the net effect of interleaved actions of several transactions is identical to executing all transactions one after another in some serial order.  Atomicity and Durability  Why transactions incomplete? transactions aborted by DBMS, system crashes, terminate itself  Atomicity is ensured by undoing actions of incomplete transactions  The DBMS maintains a log of all writes to the database.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke7 Example  Consider two transactions ( Xacts ): T1:BEGIN A=A+100, B=B-100 END T2:BEGIN A=1.06*A, B=1.06*B END  Intuitively, the first transaction is transferring $100 from B’s account to A’s account. The second is crediting both accounts with a 6% interest payment.  There is no guarantee that T1 will execute before T2 or vice-versa, if both are submitted together. However, the net effect must be equivalent to these two transactions running serially in some order.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke8 Example (Contd.)  Consider a possible interleaving ( schedule ): T1: A=A+100, B=B-100 T2: A=1.06*A, B=1.06*B  This is OK. But what about: T1: A=A+100, B=B-100 T2: A=1.06*A, B=1.06*B  The DBMS’s view of the second schedule: T1: R(A), W(A), R(B), W(B) T2: R(A), W(A), R(B), W(B)

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke9 Schedules  Two assumptions:  Transactions interact with each other only via database read and write operations  A database is a fixed collection of independent objects.  A schedule is a list of actions (read, write, abort, commit) from a set of transactions that preserves the order of actions in the transactions.  Motivation for concurrent execution  Increase system throughput  Reduce unexpected delays in response time

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke10 Scheduling Transactions  Serial schedule: Schedule that does not interleave the actions of different transactions.  Equivalent schedules : For any database state, the effect (on the set of objects in the database) of executing the first schedule is identical to the effect of executing the second schedule.  Serializable schedule : A schedule that is equivalent to some serial execution of the transactions. (Note: If each transaction preserves consistency, every serializable schedule preserves consistency. )

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke11 Anomalies with Interleaved Execution  Reading Uncommitted Data (WR Conflicts, “dirty reads”):  Unrepeatable Reads (RW Conflicts): T1: R(A), W(A), R(B), W(B), Abort T2:R(A), W(A), C T1:R(A), R(A), W(A), C T2:R(A), W(A), C

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke12 Anomalies (Continued)  Overwriting Uncommitted Data (WW Conflicts): T1:W(A), W(B), C T2:W(A), W(B), C

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke13 Schedules Involving Aborted Transactions  The effect of a serializable schedule of a set of transactions S is the same as some complete serial schedule over the set of committed transactions in S.  In a recoverable schedule, transactions commit only after all transactions whose changes they read commit. (Example of unrecoverable schedule in p. 529)  Schedules should avoid cascading aborts.  Potential problems in undoing the actions of a transaction: Changes of committed transactions to databases may be lost. (p. 530)

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke14 Lock-Based Concurrency Control  Strict Two-phase Locking (Strict 2PL) Protocol :  Each Xact must obtain a S ( shared ) lock on object before reading, and an X ( exclusive ) lock on object before writing.  All locks held by a transaction are released when the transaction completes (Non-strict) 2PL Variant: Release locks anytime, but cannot acquire locks after releasing any lock.  If an Xact holds an X lock on an object, no other Xact can get a lock (S or X) on that object.  Strict 2PL allows only serializable schedules.  Additionally, it simplifies transaction aborts  (Non-strict) 2PL also allows only serializable schedules, but involves more complex abort processing  Deadlock handling

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke15 Performance of Locking  Conflict resoling mechanisms for lock-based schemes: blocking and aborting.  Lock thrashing: when 30% of active transactions are blocked.  Throughput can be increased by:  Locking the smallest objects.  Reducing the time that transaction hold locks.  Reducing hot spots.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke16 Phantom Problem SELECT S.rating, MIN(S.age) From Sailors S Where S.rating=8  A transaction retrieves a collection of objects twice and sees different results, even though it does not modify any of the tuples itself.  To prevent phantoms, the DBMS must conceptually lock all possible tuples that might satisfy the condition. For example, the entire table.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke17 Transaction Characteristics in SQL  Access mode  Isolation level (p. 539 Figure 16.10)  READ UNCOMMITEED: does not obtain shared locks before reading objects.  READ COMMITTED: obtains exclusive locks before writing objects and holds these locks until the end.  REPEATABLE READ: does not do index locking  SERIALIZABLE: safest but slowest

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke18 Aborting a Transaction  If a transaction Ti is aborted, all its actions have to be undone. Not only that, if Tj reads an object last written by Ti, Tj must be aborted as well!  Most systems avoid such cascading aborts by releasing a transaction’s locks only at commit time.  If Ti writes an object, Tj can read this only after Ti commits.  In order to undo the actions of an aborted transaction, the DBMS maintains a log in which every write is recorded. This mechanism is also used to recover from system crashes: all active Xacts at the time of the crash are aborted when the system comes back up.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke19 The Log  The following actions are recorded in the log:  Ti writes an object : the old value and the new value. Log record must go to disk before the changed page!  Ti commits/aborts : a log record indicating this action.  Log records are chained together by Xact id, so it’s easy to undo a specific Xact.  Log is often duplexed and archived on stable storage.  All log related activities (and in fact, all CC related activities such as lock/unlock, dealing with deadlocks etc.) are handled transparently by the DBMS.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke20 Recovering From a Crash  There are 3 phases in the Aries recovery algorithm:  Analysis : Scan the log forward (from the most recent checkpoint ) to identify all Xacts that were active, and all dirty pages in the buffer pool at the time of the crash.  Redo : Redoes all updates to dirty pages in the buffer pool, as needed, to ensure that all logged updates are in fact carried out and written to disk.  Undo : The writes of all Xacts that were active at the crash are undone (by restoring the before value of the update, which is in the log record for the update), working backwards in the log. (Some care must be taken to handle the case of a crash occurring during the recovery process!)

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke21 Stealing Frames and Forcing Pages  Stealing frames: changes made to an object in the buffer pool by a transaction T be written to disk before T commits.  Forcing pages: When a transaction commits, we ensure that all the changes it has made to objects in the buffer pool are immediately forced to disk.

Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke22 Summary  Concurrency control and recovery are among the most important functions provided by a DBMS.  Users need not worry about concurrency.  System automatically inserts lock/unlock requests and schedules actions of different Xacts in such a way as to ensure that the resulting execution is equivalent to executing the Xacts one after the other in some order.  Write-ahead logging (WAL) is used to undo the actions of aborted transactions and to restore the system to a consistent state after a crash.  Consistent state : Only the effects of commited Xacts seen.