International Computer Institute Izmir Turkey Transactions Asst Prof

  • Slides: 31
Download presentation
International Computer Institute, Izmir, Turkey Transactions Asst. Prof. Dr. İlker Kocabaş UBİ 502 at

International Computer Institute, Izmir, Turkey Transactions Asst. Prof. Dr. İlker Kocabaş UBİ 502 at http: //ube. ege. edu. tr/~ikocabas/teaching/ubi 502/index. html

Transactions 1. Introduction 2. Concurrent Execution and Schedules 3. Serializability 4. Recoverability 5. Transaction

Transactions 1. Introduction 2. Concurrent Execution and Schedules 3. Serializability 4. Recoverability 5. Transaction Definition in SQL 6. Example UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 2 of 39 Modifications & additions by Cengiz Güngör

1. Introduction n A transaction is a unit of program execution that accesses and

1. Introduction n A transaction is a unit of program execution that accesses and possibly updates various data items n A transaction must see a consistent database n During transaction execution the database may be inconsistent n When the transaction is committed, the database must be consistent n Two main issues to deal with: § Failures, e. g. hardware failures and system crashes § Concurrency, for simultaneous execution of multiple transactions Process-1 Process-2 Process-3 UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 3 of 39 Modifications & additions by Cengiz Güngör

ACID To preserve integrity of data, the database system must ensure: n Atomicity: Either

ACID To preserve integrity of data, the database system must ensure: n Atomicity: Either all operations of the transaction are properly reflected in the database or none are n Consistency: Execution of a transaction in isolation preserves the consistency of the database n Isolation: Although multiple transactions may execute concurrently, each transaction must be unaware of other concurrently executing transactions; intermediate transaction results must be hidden from other concurrently executed transactions n Durability: After a transaction completes successfully, the changes it has made to the database persist, even if there are system failures UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 4 of 39 Modifications & additions by Cengiz Güngör

Example of Fund Transfer $50 from account A to B: 1. read(A) n Durability:

Example of Fund Transfer $50 from account A to B: 1. read(A) n Durability: once the user 2. A : = A – 50 has been notified that the transaction has completed, the updates to the database by the transaction must persist despite failures 3. write(A) 4. read(B) 5. B : = B + 50 6. write(B) n Consistency: the sum of A and B is unchanged by the execution of the transaction. n Atomicity: if the transaction fails after step 3 and before step 6, the system should ensure that its updates are not reflected in the database, else an inconsistency will result. UBI 502 Database Management Systems n Isolation: between steps 3 and 6, no other transaction should access the partially updated database, or else it will see an inconsistent state (the sum A + B will be less than it should be). ©Silberschatz, Korth and Sudarshan 11. 5 of 39 Modifications & additions by Cengiz Güngör

Transaction State n Active, the initial state; the transaction stays in this state while

Transaction State n Active, the initial state; the transaction stays in this state while it is executing n Partially committed, after the final statement has been executed. n Committed, after successful completion. n Failed, after the discovery that normal execution can no longer proceed. n Aborted, after the transaction has been rolled back and the database restored to its state prior to the start of the transaction. UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 6 of 39 Modifications & additions by Cengiz Güngör

Naive Approach: Shadow-Database § assume only one transaction is active at a time §

Naive Approach: Shadow-Database § assume only one transaction is active at a time § db_pointer always points to the current consistent copy of the database § all updates are made on a copy of the database, and db_pointer is made to point to the updated copy only after the transaction reaches partial commit and all updated pages have been flushed to disk § if the transaction fails, the old consistent copy pointed to by db_pointer can be used, and the shadow copy can be deleted n. Assumes disks to not fail n. Useful for text editors, but extremely inefficient for large database -- executing a single transaction requires copying the entire database! UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 7 of 39 Modifications & additions by Cengiz Güngör

2. Concurrent Execution and Schedules n Concurrent execution: executing transactions simultaneously has the following

2. Concurrent Execution and Schedules n Concurrent execution: executing transactions simultaneously has the following advantages: § increased processor and disk utilization, leading to better throughput § one transaction can be using the CPU while another is reading from or writing to the disk § reduced average response time for transactions: short transactions need not wait behind long ones n Concurrency control schemes: these are mechanisms to achieve isolation § to control the interaction among the concurrent transactions in order to prevent them from destroying the consistency of the database n Schedules: sequences that indicate the chronological order in which instructions of concurrent transactions are executed § a schedule for a set of transactions must consist of all instructions of those transactions § must preserve the order in which the instructions appear in each individual transaction UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 8 of 39 Modifications & additions by Cengiz Güngör

Example Schedules n Let T 1 transfer $50 from A to B, and T

Example Schedules n Let T 1 transfer $50 from A to B, and T 2 transfer 10% of the balance from A to B. The following is a serial schedule (Schedule 1 in the text), in which T 1 is followed by T 2. UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 9 of 39 Modifications & additions by Cengiz Güngör

Example Schedule (cont) n Let T 1 and T 2 be the transactions defined

Example Schedule (cont) n Let T 1 and T 2 be the transactions defined previously. The following schedule (Schedule 3 in the text) is not a serial schedule, but it is equivalent to Schedule 1. UBI 502 In both Schedule 1 and 3, the sum A + B is preserved. Database Management Systems 11. 10 of 39 ©Silberschatz, Korth and Sudarshan Modifications & additions by Cengiz Güngör

Example Schedules (cont) n The following concurrent schedule (Schedule 4 in the book) does

Example Schedules (cont) n The following concurrent schedule (Schedule 4 in the book) does not preserve the value of the sum A + B UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 11 of 39 Modifications & additions by Cengiz Güngör

3. Serializability n Basic Assumption – Each transaction, on its own, preserves database consistency

3. Serializability n Basic Assumption – Each transaction, on its own, preserves database consistency § i. e. serial execution of transactions preserves database consistency n A (possibly concurrent) schedule is serializable if it is equivalent to a serial schedule n Different forms of schedule equivalence give rise to the notions of conflict serializability and view serializability n Simplifying assumptions: § ignore operations other than read and write instructions § assume that transactions may perform arbitrary computations on data in local buffers between reads and writes § simplified schedules consist only of reads and writes UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 12 of 39 Modifications & additions by Cengiz Güngör

Conflict Serializability n Instructions la and lb of transactions Ta and Tb respectively, conflict

Conflict Serializability n Instructions la and lb of transactions Ta and Tb respectively, conflict if and only if there exists some item Q accessed by both la and lb, and at least one of these instructions wrote Q. 1. la = read(Q), lb = read(Q). 2. la = read(Q), lb = write(Q). 3. la = write(Q), lb = read(Q). 4. la = write(Q), lb = write(Q). la and lb don’t conflict. They conflict n Intuitively, a conflict between la and lb forces a (logical) temporal order between them n If la and lb are consecutive in a schedule and they do not conflict, their results would remain the same even if they had been interchanged in the ordering UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 13 of 39 Modifications & additions by Cengiz Güngör

Conflict Serializability (cont) n If a schedule S can be transformed into a schedule

Conflict Serializability (cont) n If a schedule S can be transformed into a schedule S´ by a series of swaps of non-conflicting instructions, we say that S and S´ are conflict equivalent. n We say that a schedule S is conflict serializable if it is conflict equivalent to a serial schedule n Example of a schedule that is not conflict serializable: T 3 T 4 read(Q) write(Q) We are unable to swap instructions in the above schedule to obtain either the serial schedule < T 3, T 4 >, or the serial schedule < T 4, T 3 >. UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 14 of 39 Modifications & additions by Cengiz Güngör

Conflict Serializability (cont) n Schedule 3 below can be transformed into Schedule 1, a

Conflict Serializability (cont) n Schedule 3 below can be transformed into Schedule 1, a serial schedule where T 2 follows T 1, by series of swaps of non-conflicting instructions. Therefore Schedule 3 is conflict serializable. UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 15 of 39 Modifications & additions by Cengiz Güngör

View Serializability n Let S and S´ be two schedules with the same set

View Serializability n Let S and S´ be two schedules with the same set of transactions. S and S´ are view equivalent if the following three conditions are met, where Q is a data item and Ti is a transaction: § If Ti reads the initial value of Q in schedule S, then Ti must, in schedule S´, also read the initial value of Q § If Ti executes read(Q) in schedule S, and that value was produced by transaction Tj (if any), then transaction Ti must in schedule S´ also read the value of Q that was produced by transaction Tj § The transaction (if any) that performs the final write(Q) operation in schedule S (for any data item Q) must perform the final write(Q) operation in schedule S´ n NB. view equivalence is also based purely on reads and writes UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 16 of 39 Modifications & additions by Cengiz Güngör

View Serializability (cont) n A schedule S is view serializable it is view equivalent

View Serializability (cont) n A schedule S is view serializable it is view equivalent to a serial schedule n Every conflict serializable schedule is also view serializable n Schedule 9 (from book) — a schedule which is view-serializable but not conflict serializable n Every view serializable schedule that is not conflict serializable has blind writes UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 17 of 39 Modifications & additions by Cengiz Güngör

Other Notions of Serializability n This schedule produces the same outcome as the serial

Other Notions of Serializability n This schedule produces the same outcome as the serial schedule < T 1, T 5 > n However it is not conflict equivalent or view equivalent to it n Determining such equivalence requires analysis of operations other than read and write UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 18 of 39 Modifications & additions by Cengiz Güngör

Testing for Serializability n Consider some schedule of a set of transactions T 1,

Testing for Serializability n Consider some schedule of a set of transactions T 1, T 2, . . . , Tn n Precedence graph: a directed graph where the vertices are transaction names n We draw an arc from Ta to Tb if the two transaction conflict, and Ta accessed the data item before Tb n We may label the arc by the item that was accessed n Example: x y UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 19 of 39 Modifications & additions by Cengiz Güngör

Example Schedule and Precedence Graph T 1 T 2 read(X) T 3 T 4

Example Schedule and Precedence Graph T 1 T 2 read(X) T 3 T 4 T 5 read(Y) read(Z) read(V) read(W) T 1 T 2 read(Y) write(Z) read(U) read(Y) write(Y) read(Z) write(Z) T 3 T 4 read(U) write(U) UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 20 of 39 Modifications & additions by Cengiz Güngör

Testing for Serializability (cont) n A schedule is conflict serializable if and only if

Testing for Serializability (cont) n A schedule is conflict serializable if and only if its precedence graph is acyclic § Cycle-detection algorithms exist which take order n 2 time, where n is the number of vertices in the graph § If precedence graph is acyclic, the serializability order can be obtained by a topological sorting of the graph. This is a linear order consistent with the partial order of the graph. For example, a serializability order for this graph is T 2 T 1 T 3 T 4 T 5 Example of an acyclic precedence graph n The precedence graph test for conflict serializability must be modified to apply to a test for view serializability § The problem of checking if a schedule is view serializable is NP -complete. Thus existence of an efficient algorithm is unlikely. However practical algorithms that just check some sufficient conditions for view serializability can still be used UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 21 of 39 Modifications & additions by Cengiz Güngör

Concurrency Control vs. Serializability Tests n Goal – to develop concurrency control protocols that

Concurrency Control vs. Serializability Tests n Goal – to develop concurrency control protocols that will ensure serializability n These protocols will impose a discipline that avoids nonseralizable schedules n A common concurrency control protocol uses locks § while one transaction is accessing a data item, no other transaction can modify it § require a transaction to lock the item before accessing it § two standard lock modes are “shared” (read-only) and “exclusive” (read-write) UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 22 of 39 Modifications & additions by Cengiz Güngör

4. Recoverability Need to address the effect of transaction failures on concurrently running transactions

4. Recoverability Need to address the effect of transaction failures on concurrently running transactions n Recoverable schedule: if a transaction Tj reads a data item previously written by a transaction Ti , the commit operation of Ti appears before the commit operation of Tj n The following schedule (Schedule 11) is not recoverable if T 9 commits immediately after the read Commit n If T 8 should abort, T 9 would have read (and possibly shown to the user) an inconsistent database state. Hence database must ensure that schedules are recoverable UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 23 of 39 Modifications & additions by Cengiz Güngör

Recoverability (cont) n Cascading rollback – a single transaction failure leads to a series

Recoverability (cont) n Cascading rollback – a single transaction failure leads to a series of transaction rollbacks n Consider the following schedule where none of the transactions has yet committed (so the schedule is recoverable) n If T 10 fails, T 11 and T 12 must also be rolled back n Can lead to the undoing of a significant amount of work n Cascadeless schedules — cascading rollbacks cannot occur; for each pair of transactions Ti and Tj such that Tj reads a data item previously written by Ti, the commit operation of Ti appears before the read operation of Tj n Every cascadeless schedule is also recoverable n It is desirable to restrict the schedules to those that are cascadeless UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 24 of 39 Modifications & additions by Cengiz Güngör

Transaction Definition in SQL n Data manipulation language must include a construct for specifying

Transaction Definition in SQL n Data manipulation language must include a construct for specifying the set of actions that comprise a transaction n In SQL, a transaction begins implicitly n A transaction in SQL ends by: § Commit work commits current transaction and begins a new one § Rollback work causes current transaction to abort n Levels of consistency specified by SQL-92: § Serializable — default § Repeatable read § Read committed § Read uncommitted UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 25 of 39 Modifications & additions by Cengiz Güngör

6. Example T 1 : T 2 : read(A); read(B); if A = 0

6. Example T 1 : T 2 : read(A); read(B); if A = 0 then B : = B+1; write(B). read(B); read(A); if B = 0 then A : = A+1; write(A). Consistency requirement: A=0 or B=0 1. Show that every serial execution involving T 1 and T 2 preserves the consistency of the database. 2. Show a concurrent execution of T 1 and T 2 that produces a nonserializable schedule. 3. Is there a concurrent execution of T 1 and T 2 that produces a serializable schedule? Initial values: A=0; B=0; UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 26 of 39 Modifications & additions by Cengiz Güngör

Example (cont): serial executions UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11.

Example (cont): serial executions UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 27 of 39 Modifications & additions by Cengiz Güngör

Example (cont): a non-serializable schedule UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan

Example (cont): a non-serializable schedule UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 28 of 39 Modifications & additions by Cengiz Güngör

Example (cont) T 1: read(A); read(B); if A = 0 then B : =

Example (cont) T 1: read(A); read(B); if A = 0 then B : = B+1; write(B). T 2: read(B); read(A); if B = 0 then A : = A+1; write(A). n No concurrent execution of T 1 and T 2 produces a serializable schedule n Suppose we start with T 1 read(A) n When the schedule ends, regardless of when we run the steps of T 2, B=1 n Before T 1 is finished we must start T 2. n T 2 read(B) will give B a value of 0. n When T 2 completes, A=1 n At the end of execution, A=1, B=1, violating the consistency requirement UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 29 of 39 Modifications & additions by Cengiz Güngör

Example During execution, a transaction passes through several states, until it finally commits or

Example During execution, a transaction passes through several states, until it finally commits or aborts. List all possible sequences of states through which a transaction may pass. Explain why each state transition may occur 1. active -> partially committed -> committed n Once all the transaction’s statements have been executed it enters the n partially committed state, and once enough recovery information has been written to disk, the transaction enters the committed state. 2. active -> partially committed -> aborted n Once all the transaction’s statements have been executed it enters the partially committed state, but before enough recovery information is written to disk there is a hardware failure. When the system is restarted, all changes made by this transaction are undone, after which the transaction enters the aborted state. 3. active -> failed -> aborted n After the transaction starts it is discovered that normal execution cannot continue (e. g. an update violates an integrity constraint), so the transaction enters the failed state. It is then rolled back, after which it enters the aborted state. UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 30 of 39 Modifications & additions by Cengiz Güngör

Summary n ACID § Atomicity: all operations reflected in the DB, or else none

Summary n ACID § Atomicity: all operations reflected in the DB, or else none are § Consistency: Executing transaction in isolation preserves consistency § Isolation: Concurrent transactions unaware of each other § Durability: Changes made by successful transactions persist n Serializability § Conflict serializability § View serializability § Testing for serializability, precedence graphs n Recoverability § handling the effects of a transaction failure on running transactions § cascading rollback UBI 502 Database Management Systems ©Silberschatz, Korth and Sudarshan 11. 31 of 39 Modifications & additions by Cengiz Güngör