Transaction Management. Pearson Education Limited 1995, 2005

Similar documents
Chapter 22. Transaction Management

Concurrency Control. Transaction Management. Lost Update Problem. Need for Concurrency Control. Concurrency control

Recoverability. Kathleen Durant PhD CS3200

Transactions. Kathleen Durant PhD Northeastern University CS3200 Lesson 9

T ransaction Management 4/23/2018 1

CHAPTER 3 RECOVERY & CONCURRENCY ADVANCED DATABASE SYSTEMS. Assist. Prof. Dr. Volkan TUNALI

Chapter 7 (Cont.) Transaction Management and Concurrency Control

Transactions. ACID Properties of Transactions. Atomicity - all or nothing property - Fully performed or not at all

Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition. Chapter 13 Managing Transactions and Concurrency

Transaction Management

) Intel)(TX)memory):) Transac'onal) Synchroniza'on) Extensions)(TSX))) Transac'ons)

Foundation of Database Transaction Processing. Copyright 2012 Pearson Education, Inc.

Transaction Management

Problems Caused by Failures

Transaction Management & Concurrency Control. CS 377: Database Systems

TRANSACTION PROCESSING PROPERTIES OF A TRANSACTION TRANSACTION PROCESSING PROPERTIES OF A TRANSACTION 4/3/2014

DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI

DB2 Lecture 10 Concurrency Control

Concurrency Control & Recovery

) Intel)(TX)memory):) Transac'onal) Synchroniza'on) Extensions)(TSX))) Transac'ons)

In This Lecture. Transactions and Recovery. Transactions. Transactions. Isolation and Durability. Atomicity and Consistency. Transactions Recovery

Introduction. Storage Failure Recovery Logging Undo Logging Redo Logging ARIES

CSCU9Q5. Topic Overview. Transaction Management. The Concept of a Transaction BACKUP & CONCURRENCY. CSCU9Q5: Database P&A 14 November 2017

transaction - (another def) - the execution of a program that accesses or changes the contents of the database

Transactions. Transaction. Execution of a user program in a DBMS.

) Intel)(TX)memory):) Transac'onal) Synchroniza'on) Extensions)(TSX))) Transac'ons)

Advances in Data Management Transaction Management A.Poulovassilis

Overview of Transaction Management

CSC 261/461 Database Systems Lecture 21 and 22. Spring 2017 MW 3:25 pm 4:40 pm January 18 May 3 Dewey 1101

XI. Transactions CS Computer App in Business: Databases. Lecture Topics

Intro to Transactions


CMP-3440 Database Systems

Chapter 17: Recovery System

Lecture X: Transactions

Transaction Processing: Basics - Transactions

Security Mechanisms I. Key Slide. Key Slide. Security Mechanisms III. Security Mechanisms II

Analysis of Transaction and Concurrency Mechanism in Two Way Waiting Algorithm for different Databases

Transaction Management Overview

Concurrency Control & Recovery

UNIT 4 TRANSACTIONS. Objective

Intro to DB CHAPTER 15 TRANSACTION MNGMNT

Transaction Management Overview. Transactions. Concurrency in a DBMS. Chapter 16

The transaction. Defining properties of transactions. Failures in complex systems propagate. Concurrency Control, Locking, and Recovery

Database Systems. Announcement

Chapter 14: Recovery System

ISSN: Monica Gahlyan et al, International Journal of Computer Science & Communication Networks,Vol 3(3),

Distributed Database Management System UNIT-2. Concurrency Control. Transaction ACID rules. MCA 325, Distributed DBMS And Object Oriented Databases

Multi-User-Synchronization

) Intel)(TX)memory):) Transac'onal) Synchroniza'on) Extensions)(TSX))) Transac'ons)

Concurrency Control 9-1

Recovery System These slides are a modified version of the slides of the book Database System Concepts (Chapter 17), 5th Ed McGraw-Hill by

Distributed Transaction Management

Database Management System Prof. D. Janakiram Department of Computer Science & Engineering Indian Institute of Technology, Madras Lecture No.

Outline. Purpose of this paper. Purpose of this paper. Transaction Review. Outline. Aries: A Transaction Recovery Method

TRANSACTION PROPERTIES

Introduction to Data Management. Lecture #18 (Transactions)

Database Tuning and Physical Design: Execution of Transactions

Chapter 15 : Concurrency Control

Implementing Isolation

Introduction to Transaction Processing Concepts and Theory

Synchronization Part II. CS403/534 Distributed Systems Erkay Savas Sabanci University

Databases - Transactions

Transactions and Concurrency Control

Transaction Processing: Concurrency Control ACID. Transaction in SQL. CPS 216 Advanced Database Systems. (Implicit beginning of transaction)

RECOVERY CHAPTER 21,23 (6/E) CHAPTER 17,19 (5/E)

Database Management System

Copyright 2016 Ramez Elmasri and Shamkant B. Navathe

Overview. Introduction to Transaction Management ACID. Transactions

Concurrency Control in Distributed Systems. ECE 677 University of Arizona

CSE 190D Database System Implementation

Control. CS432: Distributed Systems Spring 2017

CSC 261/461 Database Systems Lecture 24

CSE 530A ACID. Washington University Fall 2013

Concurrency Control Overview. COSC 404 Database System Implementation. Concurrency Control. Lock-Based Protocols. Lock-Based Protocols (2)

Weak Levels of Consistency

Chapter 16: Recovery System. Chapter 16: Recovery System

Silberschatz and Galvin Chapter 18

Slides Courtesy of R. Ramakrishnan and J. Gehrke 2. v Concurrent execution of queries for improved performance.

Intro to Transaction Management

UNIT IV TRANSACTION MANAGEMENT

UNIT-IV TRANSACTION PROCESSING CONCEPTS

Chapter 13 : Concurrency Control

ACID Properties. Transaction Management: Crash Recovery (Chap. 18), part 1. Motivation. Recovery Manager. Handling the Buffer Pool.

CS122 Lecture 15 Winter Term,

CS 5300 module6. Problem #1 (10 Points) a) Consider the three transactions T1, T2, and T3, and the schedules S1 and S2.

Lecture 21 Concurrency Control Part 1

TRANSACTION PROCESSING CONCEPTS

Concurrency Control. Data Base Management Systems. Inherently Concurrent Systems: The requirements

Module 15: Managing Transactions and Locks

DATABASE DESIGN I - 1DL300

L i (A) = transaction T i acquires lock for element A. U i (A) = transaction T i releases lock for element A

System Malfunctions. Implementing Atomicity and Durability. Failures: Crash. Failures: Abort. Log. Failures: Media

Chapter 17: Recovery System

Failure Classification. Chapter 17: Recovery System. Recovery Algorithms. Storage Structure

Database Management Systems

SQL: Transactions. Introduction to Databases CompSci 316 Fall 2017

CSE 344 MARCH 9 TH TRANSACTIONS

Transaction Management: Crash Recovery (Chap. 18), part 1

some sequential execution crash! Recovery Manager replacement MAIN MEMORY policy DISK

Transcription:

Chapter 20 Transaction Management 1 Chapter 20 - Objectives Function and importance of transactions. Properties of transactions. Concurrency Control Deadlock and how it can be resolved. Granularity of locking. 2

Chapter 20 - Objectives Recovery Control Some causes of database failure. Purpose of transaction log file. Purpose of checkpointing. How to recover following database failure. 3 Transaction Support Transaction Action, or series of actions, carried out by user or application, which reads or updates contents of database. Logical unit of work on the database. Application program is series of transactions with nondatabase processing in between. Transforms database from one consistent state to another, although consistency may be violated during transaction. 4

Example Transaction 5 Transaction Support Can have one of two outcomes: Success - transaction commits and database reaches a new consistent state. Failure - transaction aborts, and database must be restored to consistent state before it started. Such a transaction is rolled back or undone. Committed transaction cannot be aborted. Aborted transaction that is rolled back can be restarted later. 6

State Transition Diagram for Transaction 7 Properties of Transactions Four basic (ACID) properties of a transaction are: Atomicity All or nothing property. Consistency Must transform database from one consistent state to another. Isolation Partial effects of incomplete transactions should not be visible to other transactions. Durability Effects of a committed transaction are permanent and must not be lost because of later failure. 8

DBMS Transaction Subsystem 9 Concurrency Control Process of managing simultaneous operations on the database without having them interfere with one another. Prevents interference when two or more users are accessing database simultaneously and at least one is updating data. Although two transactions may be correct in themselves, interleaving of operations may produce an incorrect result. 10

Need for Concurrency Control Three examples of potential problems caused by concurrency: Lost update problem. Uncommitted dependency problem. Inconsistent analysis problem. 11 Lost Update Problem Successfully completed update is overridden by another user. T 1 withdrawing 10 from an account with bal x, initially 100. T 2 depositing 100 into same account. Serially, final balance would be 190. 12

Lost Update Problem Loss of T 2 s update avoided by preventing T 1 from reading bal x until after update. 13 Uncommitted Dependency Problem (dirty read) Occurs when one transaction can see intermediate results of another transaction before it has committed. T 4 updates bal x to 200 but it aborts, so bal x should be back at original value of 100. T 3 has read new value of bal x ( 200) and uses value as basis of 10 reduction, giving a new balance of 190, instead of 90. 14

Uncommitted Dependency Problem Problem avoided by preventing T 3 from reading bal x until after T 4 commits or aborts. 15 Inconsistent Analysis Problem Occurs when transaction reads several values but second transaction updates some of them during execution of first. Sometimes referred to as fuzzy read or unrepeatable read. T 6 is totaling balances of account x ( 100), account y ( 50), and account z ( 25). Meantime, T 5 has transferred 10 from bal x to bal z,sot 6 now has wrong result ( 10 too high). 16

Inconsistent Analysis Problem Problem avoided by preventing T 6 from reading bal x and bal z until after T 5 completed updates. 17 Concurrency Control Techniques Two basic concurrency control techniques: Locking, Timestamping. Both are conservative approaches: delay transactions in case they conflict with other transactions. Optimistic methods assume conflict is rare and only check for conflicts at commit. 18

Locking Transaction uses locks to deny access to other transactions and so prevent incorrect updates. Most widely used approach to ensure serializability. Generally, a transaction must claim a shared (read) or exclusive (write) lock on a data item before read or write. Lock prevents another transaction from modifying item or even reading it, in the case of a write lock. 19 Locking - Basic Rules If transaction has shared lock on item, can read but not update item. If transaction has exclusive lock on item, can both read and update item. Reads cannot conflict, so more than one transaction can hold shared locks simultaneously on same item. Exclusive lock gives transaction exclusive access to that item. 20

Locking - Basic Rules Some systems allow transaction to upgrade read lock to an exclusive lock, or downgrade exclusive lock to a shared lock. 21 Example - Incorrect Locking Schedule For two transactions above, a valid schedule using these rules is: S = {write_lock(t 9,bal x ), read(t 9,bal x ), write(t 9, bal x ), unlock(t 9, bal x ), write_lock(t 10, bal x ), read(t 10, bal x ), write(t 10, bal x ), unlock(t 10, bal x ), write_lock(t 10, bal y ), read(t 10, bal y ), write(t 10, bal y ), unlock(t 10, bal y ), commit(t 10 ), write_lock(t 9, bal y ), read(t 9, bal y ), write(t 9, bal y ), unlock(t 9,bal y ), commit(t 9 )} 22

Example - Incorrect Locking Schedule If at start, bal x = 100, bal y = 400, result should be: bal x = 220, bal y =330,ifT 9 executes before T 10,or bal x = 210, bal y =340,ifT 10 executes before T 9. However, result gives bal x =220 and bal y = 340. S is not a serializable schedule. 23 Example - Incorrect Locking Schedule Problem is that transactions release locks too soon, resulting in loss of total isolation and atomicity. To guarantee serializability, need an additional protocol concerning the positioning of lock and unlock operations in every transaction. 24

Two-Phase Locking (2PL) Transaction follows 2PL protocol if all locking operations precede first unlock operation in the transaction. Two phases for transaction: Growing phase - acquires all locks but cannot release any locks. Shrinking phase - releases locks but cannot acquire any new locks. 25 Preventing Lost Update Problem using 2PL 26

Preventing Uncommitted Dependency Problem using 2PL 27 Preventing Inconsistent Analysis Problem using 2PL 28

Deadlock An impasse that may result when two (or more) transactions are each waiting for locks held by the other to be released. 29 Deadlock Only one way to break deadlock: abort one or more of the transactions. Deadlock should be transparent to user, so DBMS should restart transaction(s). Three general techniques for handling deadlock: Timeouts. Deadlock prevention. Deadlock detection and recovery. 30

Timeouts Transaction that requests lock will only wait for a system-defined period of time. If lock has not been granted within this period, lock request times out. In this case, DBMS assumes transaction may be deadlocked, even though it may not be, and it aborts and automatically restarts the transaction. 31 Deadlock Prevention DBMS looks ahead to see if transaction would cause deadlock and never allows deadlock to occur. Could order transactions using transaction timestamps: Wait-Die - only an older transaction can wait for younger one, otherwise transaction is aborted (dies) and restarted with same timestamp. 32

Deadlock Prevention Wound-Wait - only a younger transaction can wait for an older one. If older transaction requests lock held by younger one, younger one is aborted (wounded). 33 Deadlock Detection and Recovery DBMS allows deadlock to occur but recognizes it and breaks it. Usually handled by construction of wait-for graph (WFG) showing transaction dependencies: Create a node for each transaction. Create edge T i -> T j,ift i waiting to lock item locked by T j. Deadlock exists if and only if WFG contains cycle. WFG is created at regular intervals. 34

Example - Wait-For-Graph (WFG) 35 Recovery from Deadlock Detection Several issues: choice of deadlock victim; how far to roll a transaction back; avoiding starvation. 36

Database Recovery Process of restoring database to a correct state in the event of a failure. Need for Recovery Control Two types of storage: volatile (main memory) and nonvolatile. Volatile storage does not survive system crashes. Stable storage represents information that has been replicated in several nonvolatile storage media with independent failure modes. 37 Types of Failures System crashes, resulting in loss of main memory. Media failures, resulting in loss of parts of secondary storage. Application software errors. Natural physical disasters. Carelessness or unintentional destruction of data or facilities. Sabotage. 38

Transactions and Recovery Transactions represent basic unit of recovery. Recovery manager responsible for atomicity and durability. If failure occurs between commit and database buffers being flushed to secondary storage then, to ensure durability, recovery manager has to redo (rollforward) transaction s updates. 39 Transactions and Recovery If transaction had not committed at failure time, recovery manager has to undo (rollback) any effects of that transaction for atomicity. Partial undo - only one transaction has to be undone. Global undo - all transactions have to be undone. 40

Example DBMS starts at time t 0, but fails at time t f. Assume data for transactions T 2 and T 3 have been written to secondary storage. T 1 and T 6 have to be undone. In absence of any other information, recovery manager has to redo T 2,T 3,T 4,and T 5. 41 Recovery Facilities DBMS should provide following facilities to assist with recovery: Backup mechanism, which makes periodic backup copies of database. Logging facilities, which keep track of current state of transactions and database changes. Checkpoint facility, which enables updates to database in progress to be made permanent. Recovery manager, which allows DBMS to restore database to consistent state following a failure. 42

Log File Contains information about all updates to database: Transaction records. Checkpoint records. Often used for other purposes (for example, auditing). 43 Log File Transaction records contain: Transaction identifier. Type of log record, (transaction start, insert, update, delete, abort, commit). Identifier of data item affected by database action (insert, delete, and update operations). Before-image of data item. After-image of data item. Log management information. 44

Sample Log File 45 Log File Log file may be duplexed or triplexed. Log file sometimes split into two separate random-access files. Potential bottleneck; critical in determining overall performance. 46

Checkpointing Checkpoint Point of synchronization between database and log file. All buffers are force-written to secondary storage. Checkpoint record is created containing identifiers of all active transactions. When failure occurs, redo all transactions that committed since the checkpoint and undo all transactions active at time of crash. 47 Checkpointing In previous example, with checkpoint at time t c, changes made by T 2 and T 3 have been written to secondary storage. Thus: only redo T 4 and T 5, undo transactions T 1 and T6. 48

Recovery Techniques If database has been damaged: Need to restore last backup copy of database and reapply updates of committed transactions using log file. If database is only inconsistent: Need to undo changes that caused inconsistency. May also need to redo some transactions to ensure updates reach secondary storage. Do not need backup, but can restore database using before- and after-images in the log file. 49