Lecture 21: Intro to Transactions & Logging III

Slides:



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

Concurrency Control WXES 2103 Database. Content Concurrency Problems Concurrency Control Concurrency Control Approaches.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.
Introduction to Database Systems1 Concurrency Control CC.Lecture 1.
Transaction Management: Concurrency Control CS634 Class 17, Apr 7, 2014 Slides based on “Database Management Systems” 3 rd ed, Ramakrishnan and Gehrke.
TRANSACTION PROCESSING SYSTEM ROHIT KHOKHER. TRANSACTION RECOVERY TRANSACTION RECOVERY TRANSACTION STATES SERIALIZABILITY CONFLICT SERIALIZABILITY VIEW.
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.
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.
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.
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.
Transaction Management
1 Lecture 08: Transaction management overview
Transaction Processing
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.
CS 162 Discussion Section Week 9 11/11 – 11/15. Today’s Section ●Project discussion (5 min) ●Quiz (10 min) ●Lecture Review (20 min) ●Worksheet and Discussion.
Introduction to Data Management CSE 344 Lecture 23: Transactions CSE Winter
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.
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.
Transaction Management Overview. Transactions Concurrent execution of user programs is essential for good DBMS performance. – Because disk accesses are.
Database System Concepts, 6 th Ed. ©Silberschatz, Korth and Sudarshan See for conditions on re-usewww.db-book.com Chapter 14: Transactions.
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.
COMP 430 Intro. to Database Systems Transactions, concurrency, & ACID.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.
Lectures 8 & 9: Transactions Lectures 8 & 9. Goals for this pair of lectures Transactions are a programming abstraction that enables the DBMS to handle.
Lectures 8 & 9 Transactions.
Database Systems (資料庫系統)
Transaction Management Overview
Database Systems (資料庫系統)
Lectures 7 & 8: Transactions
Transaction Management
Transaction Management Overview
March 21st – Transactions
Database Applications (15-415) DBMS Internals- Part XI Lecture 20, November 8, 2016 Mohammad Hammoud.
Lecture#20: Overview of Transaction Management
Transaction Management Overview
Transaction Management Overview
Transaction Management Overview
Transaction Management
Transaction Management Overview
Concurrency.
Lecture 21: Concurrency & Locking
CS162 Operating Systems and Systems Programming Review (II)
Lectures 7: Intro to Transactions & Logging
Transaction Management Overview
Lecture 20: Intro to Transactions & Logging II
Lecture 22: Intro to Transactions & Logging IV
Transaction management
Lecture 19b: Intro to Transactions & Logging
Transaction Management
Database Management systems Subject Code: 10CS54 Prepared By:
Transaction Management Overview
Transaction Management Overview
Presentation transcript:

Lecture 21: Intro to Transactions & Logging III Professor Xiannong Meng Spring 2018 Lecture and activity contents are based on what Prof Chris Ré of Stanford used in his CS 145 in the fall 2016 term with permission

Today’s Lecture Concurrency, scheduling & anomalies Locking: 2PL, conflict serializability, deadlock detection

1. Concurrency, Scheduling & Anomalies

What you will learn about in this section Interleaving & scheduling Conflict & anomaly types

Concurrency: Isolation & Consistency The DBMS must handle concurrency such that… Isolation is maintained: Users must be able to execute each TXN as if they were the only user DBMS handles the details of interleaving various TXNs Consistency is maintained: TXNs must leave the DB in a consistent state DBMS handles the details of enforcing integrity constraints ACID ACID

Example- consider two TXNs: T1: START TRANSACTION UPDATE Accounts SET Amt = Amt + 100 WHERE Name = ‘A’ UPDATE Accounts SET Amt = Amt - 100 WHERE Name = ‘B’ COMMIT T2: START TRANSACTION UPDATE Accounts SET Amt = Amt * 1.06 COMMIT T1 transfers $100 from B’s account to A’s account T2 credits both accounts with a 6% interest payment

Example- consider two TXNs: We can look at the TXNs in a timeline view- serial execution: T1 A += 100 B -= 100 A *= 1.06 B *= 1.06 T2 Time T1 transfers $100 from B’s account to A’s account T2 credits both accounts with a 6% interest payment

Example- consider two TXNs: The TXNs could occur in either order… DBMS allows! T1 A += 100 B -= 100 T2 A *= 1.06 B *= 1.06 Time T2 credits both accounts with a 6% interest payment T1 transfers $100 from B’s account to A’s account

Example- consider two TXNs: The DBMS can also interleave the TXNs T1 A += 100 B -= 100 T2 A *= 1.06 B *= 1.06 Time T2 credits A’s account with 6% interest payment, then T1 transfers $100 to A’s account… T2 credits B’s account with a 6% interest payment, then T1 transfers $100 from B’s account…

Example- consider two TXNs: The DBMS can also interleave the TXNs T1 A += 100 B -= 100 T2 A *= 1.06 B *= 1.06 Time What goes wrong here??

Recall: Three Types of Regions of Memory Local Global Main Memory (RAM) Disk Local: In our model each process in a DBMS has its own local memory, where it stores values that only it “sees” Global: Each process can read from / write to shared data in main memory Disk: Global memory can read from / flush to disk Log: Assume on stable disk storage- spans both main memory and disk… 1 2 4 3 Log is a sequence from main memory -> disk “Flushing to disk” = writing to disk.

Why Interleave TXNs? All concern large differences in performance Interleaving TXNs might lead to anomalous outcomes… why do it? Several important reasons: Individual TXNs might be slow- don’t want to block other users during the TXN! Disk access may be slow- let some TXNs use CPUs while others accessing disk! All concern large differences in performance

Interleaving & Isolation The DBMS has freedom to interleave TXNs However, it must pick an interleaving or schedule such that isolation and consistency are maintained Must be as if the TXNs had executed serially! “With great power comes great responsibility” ACID DBMS must pick a schedule which maintains isolation & consistency

Scheduling examples Assume we have two bank accounts, A and B, $50 $200 starting balance: possible operations: Note: DBMS itself can’t prevent from wrong transaction orders by humans. Both sets of operations above, (T1, T2) or (T2, T1) are valid. DBMS is responsible for consistent result.

Scheduling examples T1 T2 T1 T2 Starting Balance $50 $200 Serial schedule T1,T2: T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 A B $159 $106 Interleaved schedule S1: Same result! T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 A B $159 $106

Scheduling examples T1 T2 T1 T2 Starting Balance $50 $200 Serial schedule T1,T2: T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 A B $159 $106 Different result than serial T1,T2! Interleaved schedule S2: T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 A B $159 $112

Scheduling examples T1 T2 T1 T2 Starting Balance $50 $200 Serial schedule T2,T1: T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 A B $153 $112 Different result than serial T2,T1 ALSO! Interleaved schedule S3: T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 A B $159 $112

Scheduling examples Interleaved schedule S3: T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 This schedule is different than any serial order! We say that this schedule is not serializable

Scheduling Definitions A serial schedule is one that does not interleave the actions of different transactions Schedules A and B are equivalent schedules if, for any database state, the effect on DB of executing A is identical to the effect of executing B A serializable schedule is a schedule that is equivalent to some serial execution of the transactions. The word “some” makes this definition powerful & tricky!

Serializable? A += 100 B -= 100 T1 A *= 1.06 T2 B *= 1.06 Serial schedules: A B T1,T2 1.06*(A+100) 1.06*(B-100) T2,T1 1.06*A + 100 1.06*B - 100 T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 A B 1.06*(A+100) 1.06*(B-100) Same as a serial schedule for all possible values of A, B = serializable

Serializable? T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 Serial schedules: A B T1,T2 1.06*(A+100) 1.06*(B-100) T2,T1 1.06*A + 100 1.06*B - 100 T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 A B 1.06*(A+100) 1.06*B - 100 Not equivalent to any serializable schedule = not serializable

What else can go wrong with interleaving? Various anomalies which break isolation / serializability Often referred to by name… Occur because of / with certain “conflicts” between interleaved TXNs

The DBMS’s view of the schedule Each action in the TXNs reads a value from global memory and then writes one back to it Scheduling order matters! T1 T2 A += 100 B -= 100 A *= 1.06 B *= 1.06 T1 R(A) W(A) R(B) W(B) T2 R(A) W(A) R(B) W(B)

Conflict Types Two actions conflict if they are part of different TXNs, involve the same variable, and at least one of them is a write Thus, there are three types of conflicts: Read-Write conflicts (RW) Write-Read conflicts (WR) Write-Write conflicts (WW) Why no “RR Conflict”? Interleaving anomalies occur with / because of these conflicts between TXNs (but these conflicts can occur without causing anomalies!) See next section for more!

Occurring with / because of a RW conflict Classic Anomalies with Interleaved Execution “Unrepeatable read”: Example: T1 reads some data from A T2 writes to A Then, T1 reads from A again and now gets a different / inconsistent value T1 R(A) R(A) T2 R(A) W(A) C Occurring with / because of a RW conflict

Occurring with / because of a WR conflict Classic Anomalies with Interleaved Execution “Dirty read” / Reading uncommitted data: Example: T1 writes some data to A T2 reads from A, then writes back to A & commits T1 then aborts- now T2’s result is based on an obsolete / inconsistent value T1 W(A) A T2 R(A) W(A) C Occurring with / because of a WR conflict

Again, occurring because of a WR conflict Classic Anomalies with Interleaved Execution “Inconsistent read” / Reading partial commits: T1 writes some data to A T2 reads from A and B, and then writes some value which depends on A & B T1 then writes to B- now T2’s result is based on an incomplete commit Example: T1 W(A) W(B) C T2 R(A) C R(B) W(C=A*B) Again, occurring because of a WR conflict

Occurring because of a WW conflict Classic Anomalies with Interleaved Execution Partially-lost update: Example: T1 blind writes some data to A T2 blind writes to A and B T1 then blind writes to B; now we have T2’s value for B and T1’s value for A- not equivalent to any serial schedule! T1 W(A) W(B) C T2 W(A) C W(B) Occurring because of a WW conflict