Transaction Management Overview

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.
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.
1 CSIS 7102 Spring 2004 Lecture 8: Recovery (overview) Dr. King-Ip Lin.
Transaction Management Overview. Transactions Concurrent execution of user programs is essential for good DBMS performance. –Because disk accesses are.
ICOM 6005 – Database Management Systems Design Dr. Manuel Rodríguez-Martínez Electrical and Computer Engineering Department Lecture 16 – Intro. to Transactions.
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 Overview R & G Chapter 16 There are three side effects of acid. Enhanced long term memory, decreased short term memory, and I forget.
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.
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.
Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Lecture 21 Ramakrishnan - Chapter 18.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.
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.
Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Instructor: Xintao Wu.
Introduction to Database Systems1. 2 Basic Definitions Mini-world Some part of the real world about which data is stored in a database. Data Known facts.
Transaction Management Overview. Transactions Concurrent execution of user programs is essential for good DBMS performance. – Because disk accesses are.
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.
ICOM 6005 – Database Management Systems Design Dr. Manuel Rodríguez-Martínez Electrical and Computer Engineering Department Lecture 16 – Intro. to Transactions.
MULTIUSER DATABASES : Concurrency and Transaction Management.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.
1 Concurrency Control. 2 Why Have Concurrent Processes? v Better transaction throughput, response time v Done via better utilization of resources: –While.
DURABILITY OF TRANSACTIONS AND CRASH RECOVERY
Database Applications (15-415) DBMS Internals- Part XIII Lecture 22, November 15, 2016 Mohammad Hammoud.
Transaction Management Overview
Database Systems (資料庫系統)
Transaction Management Overview
Introduction to Database Systems
Transaction Management
Transaction Management Overview
Lecture#20: Overview of Transaction Management
CS122B: Projects in Databases and Web Applications Winter 2018
Recovery I: The Log and Write-Ahead Logging
Transaction Management Overview
Crash Recovery, Part 2 R&G - Chapter 18
Transaction Management Overview
Transaction Management
Transaction Management Overview
Concurrency.
Chapter 10 Transaction Management and Concurrency Control
Database Applications (15-415) DBMS Internals- Part XIII Lecture 25, April 15, 2018 Mohammad Hammoud.
Lecture 21: Concurrency & Locking
Lecture 21: Intro to Transactions & Logging III
Lecture 20: Intro to Transactions & Logging II
Transaction Management
Database Management systems Subject Code: 10CS54 Prepared By:
Transaction Management Overview
Database Applications (15-415) DBMS Internals- Part XIII Lecture 24, April 14, 2016 Mohammad Hammoud.
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:

Transaction Management Overview R & G Chapter 16 Lecture 19 The slides for this text are organized into several modules. Each lecture contains about enough material for a 1.25 hour class period. (The time estimate is very approximate--it will vary with the instructor, and lectures also differ in length; so use this as a rough guideline.) This covers Lecture 1A in Module (6); it is a 1-lecture overview of the material, and is an alternative to Lectures 1 through 4 in this module, which provide more detailed coverage. Note that the text contains enough material for an even more detailed treatment than Lectures 1 through 4, e.g., view serializability, B-tree CC, non-locking approaches.) Module (1): Introduction (DBMS, Relational Model) Module (2): Storage and File Organizations (Disks, Buffering, Indexes) Module (3): Database Concepts (Relational Queries, DDL/ICs, Views and Security) Module (4): Relational Implementation (Query Evaluation, Optimization) Module (5): Database Design (ER Model, Normalization, Physical Design, Tuning) Module (6): Transaction Processing (Concurrency Control, Recovery) Module (7): Advanced Topics There are three side effects of acid. Enhanced long term memory, decreased short term memory, and I forget the third. - Timothy Leary

Administrivia Homework 3 Due Next Sunday, 7pm Use “ANALYZE” to get correct statistics No office hours Thursday, today 1:30-2:30 instead

Review – Last Week Tree Indexes – BTrees and ISAM good for range queries, o.k. for equality queries ISAM for static data, B-Trees for dynamic data Hash Indexes best for equality queries, useless for range queries Static Hashing Extendable Hashing Linear Hashing

Review – The Big Picture Data Modelling Relational & E-R Database design and Functional Dependencies Storing Data File Organization File Indexes, Trees and Hash Tables Buffer Pool Management Query Languages SQL, Relational Algebra, Relational Calculus Query Optimization External Sorting Join Algorithms Query Plans, Cost Estimation Database Applications Transactions and Concurrency Control Logging and Crash Recovery

Concurrency Control and Recovery They help support A.C.I.D. properties Atomicity Consistency Isolation Durability More formal definitions shortly

Concurrency Control & Recovery Provide correct and highly available access to data in the presence of concurrent access by large and diverse user populations Recovery Ensures database is fault tolerant, and not corrupted by software, system or media failure 7x24 access to mission critical data Existence of CC&R allows applications to be written without explicit concern for concurrency and fault tolerance Allows DMBS to have concurrent execution and recovery from system failure, esp involving mission critical data. Users to write applications without having to worry about concurrent control and recovery. Increased programmer productivity and allows new applications to be added more easily and safely to existing system.

Roadmap Overview (Today) Concurrency Control (2 lectures) Recovery (1-2 lectures)

Files and Access Methods Structure of a DBMS Query Optimization and Execution Relational Operators Files and Access Methods Buffer Management Disk Space Management DB These layers must consider concurrency control and recovery (Transaction, Lock, Recovery Managers)

Transactions Transaction is unit of atomicity transaction should either finish, or never start Transaction is a sequence of operations for database, only reads, writes matter

Transactions and Concurrent Execution Transaction - DBMS’s abstract view of user program (or activity): A sequence of reads and writes of database objects. Unit of work that must commit and abort as a single atomic unit Transaction Manager controls the execution of transactions. User 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. Concurrent execution of multiple transactions essential for good performance. Disk is the bottleneck (slow, frequently used) Must keep CPU busy w/many queries Better response time While one transaction is waiting for a page to be read in from disk, CPU can process another transaction. Overlapping I/O and CPU activity reduces the amount of time disk and processors are idle and increases system throughput (useful work completed per unit time) In serial execution, a short transaction can get stuck behind a long transaction. Interleaving the execution of a short transaction with a long transaction allows the short transaction to complete quickly. Transaction is defined as any one execution of a user program in a DBMS and differs from an execution outside the DBMS.

ACID properties of Transaction Executions A tomicity: All actions in the Xact happen, or none happen. C onsistency: If each Xact is consistent, and the DB starts consistent, it ends up consistent. I solation: Execution of one Xact is isolated from that of other Xacts. D urability: If a Xact commits, its effects persist. Transaction executions are said to respect the following 4 properties.

Atomicity and Durability A transaction might commit after completing all its actions, or it could abort (or be aborted by the DBMS) after executing some actions. Also, the system may crash while the transaction is in progress. Important properties: Atomicity : Either executing all its actions, or none of its actions. Durability : The effects of committed transactions must survive failures. DBMS ensures the above by logging all actions: Undo the actions of aborted/failed transactions. Redo actions of committed transactions not yet propagated to disk when system crashes. 1) Users should not have to worry about the effect of incomplete transactions (say when a system crash occurs)

Transaction Consistency A transaction performed on a database that is internally consistent will leave the database in an internally consistent state. Consistency of database is expressed as a set of declarative Integrity Constraints CREATE TABLE/ASSERTION statements E.g. Each CS186 student can only register in one project group. Each group must have 3 students. Application-level E.g. Bank account of each customer must stay the same during a transfer from savings to checking account Transactions that violate ICs are aborted. Bank transfer example.

Isolation (Concurrency) Concurrency is achieved by DBMS, which interleaves actions (reads/writes of DB objects) of various transactions. DBMS ensures transactions do not step onto one another. Each transaction executes as if it was running by itself. Transaction’s behavior is not impacted by the presence of other transactions that are accessing the same database concurrently. Net effect must be identical to executing all transactions for some serial order. Users understand a transaction without considering the effect of other concurrently executing transactions. Sees only the state of a database that could occur if the transaction were the only one running against the database and produce only the results that it could produce if it were running alone.

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 1st xact transfers $100 from B’s account to A’s 2nd credits both accounts with 6% interest. Assume at first A and B each have $1000. What are the legal outcomes of running T1 and T2? T1 ; T2 (A=1166,B=954) T2 ; T1 (A=1160,B=960) In either case, A+B = $2000 *1.06 = $2120 There is no guarantee that T1 will execute before T2 or vice-versa, if both are submitted together. Sum of balance of A and B should be the same regardless of whether T1/T2 commits/aborts.

Example (Contd.) This is OK (same as T1;T2). But what about: Consider a possible interleaved schedule: T1: A=A+100, B=B-100 T2: A=1.06*A, B=1.06*B This is OK (same as T1;T2). But what about: T1: A=A+100, B=B-100 T2: A=1.06*A, B=1.06*B Result: A=1166, B=960; A+B = 2126, bank loses $6 ! The DBMS’s view of the second schedule: T1 followed by T2 … T2 followed by T1 are both ok. In both cases, A+B is 2120 T1: R(A), W(A), R(B), W(B) T2: R(A), W(A), R(B), W(B)

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. ) Executing transactions serially in different orders may produce different results, but all are presumed to be acceptable.

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

Anomalies (Continued) Overwriting Uncommitted Data (WW Conflicts): T1: W(A), W(B), C T2: W(A), W(B), C

How to prevent anomolies? Locks! Database allows “objects” to be locked “object” might be entire database, file, page, tuple Two kinds of locks: “Shared” or “Read” Lock No one else is allowed to write the object if you have this “Exclusive” or “Write” Lock No one else is allowed to read or write the object

Locks not enough If lock/unlock objects right away, anomolies still possible Idea: Two Phase Locking In a transaction, only acquire locks in one phase only release locks in a second phase once one lock has been released, can never aquire another lock during transaction #locks Time

Lock-Based Concurrency Control Two-phase Locking (2PL) Protocol: Each Xact must obtain: a S (shared) lock on object before reading, and an X (exclusive) lock on object before writing. If an Xact holds an X lock on an object, no other Xact can get a lock (S or X) on that object. System can obtain these locks automatically Two phases: acquiring locks, and releasing them No lock is ever acquired after one has been released “Growing phase” followed by “shrinking phase”. Lock Manager keeps track of request for locks and grants locks on database objects when they become available.

Strict 2PL 2PL allows only serializable schedules but is subjected to cascading aborts. Example: rollback of T1 requires rollback of T2! To avoid Cascading aborts, use Strict 2PL Strict Two-phase Locking (Strict 2PL) Protocol: Same as 2PL, except: All locks held by a transaction are released only when the transaction completes T1: R(A), W(A), Abort T2: R(A), W(A), R(B), W(B) #locks vs

Strict 2PL (cont) One advantage: no other transaction even reads anything you write until you commit. I.e. you can only read committed data. #locks

What about Durability? If a transaction commits, you want its data made permanent What if power failure 1ns after commit? What if some data still not written to disk? If transaction is aborted, you want any data changes undone What if some data writes already on disk? To solve these problems, we have: Logging Crash Recovery Algorithms

Introduction to Crash Recovery Recovery Manager When a DBMS is restarted after crashes, the recovery manager must bring the database to a consistent state Ensures transaction atomicity and durability Undos actions of transactions that do not commit Redos actions of committed transactions during system failures and media failures (corrupted disk). Recovery Manager maintains log information during normal execution of transactions for use during crash recovery

The Log Log consists of “records” that are written sequentially. Typically chained together by Xact id Log is often duplexed and archived on stable storage. Log stores modifications to the database if Ti writes an object, write a log record with: If UNDO required need “before image” IF REDO required need “after image”. Ti commits/aborts: a log record indicating this action. Need for UNDO and/or REDO depend on Buffer Mgr. UNDO required if uncommitted data can overwrite stable version of committed data (STEAL buffer management). REDO required if xact can commit before all its updates are on disk (NO FORCE buffer management). Duplexed: Store at two different disks perhaps at different locations. Xact id: Log sequence number (LSN). Monotonically increasing number.

Logging Continued Write Ahead Logging (WAL) protocol Log record must go to disk before the changed page! implemented via a handshake between log manager and the buffer manager. All log records for a transaction (including it’s commit record) must be written to disk before the transaction is considered “Committed”. 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.

ARIES Recovery There are 3 phases in ARIES recovery: 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, as found in the log), working backwards in the log. At the end --- all committed updates and only those updates are reflected in the database. Some care must be taken to handle the case of a crash occurring during the recovery process!

Summary Concurrency control and recovery are among the most important functions provided by a DBMS. Concurrency control is automatic. 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) and the recovery protocol are used to undo the actions of aborted transactions and to restore the system to a consistent state after a crash.