definition
play

Definition A transaction is a collection of instructions (or 9: - PDF document

Definition A transaction is a collection of instructions (or 9: Transactions operations) that perform a single logical function. Customer buys a car MerchantsInventory-- Customer Bank Account -=PRICE Last Modified: Merchant


  1. Definition ❒ A transaction is a collection of instructions (or 9: Transactions operations) that perform a single logical function. ❒ Customer buys a car ❍ MerchantsInventory-- ❍ Customer Bank Account -=PRICE Last Modified: ❍ Merchant Bank Account+=PRICE ❍ CustomerHistory++ 10/8/2002 9:39:59 PM ❍ …. ❒ All of these things should happen indivisibly – all or nothing? Even in the presence of failures and multiple concurrently executing transactions! ❒ How do you make that happen when it is physically impossible to change all these things at the same time? -1 -2 Commit/Abort Database Systems ❒ Manage transactions (much like OSes manage ❒ Introduce concept of commit (or save) at processes) the end of a transaction ❒ Ensure the correct synchronization and the saving ❒ Until commit, all the individual operations of modified data on transaction commit that make up the transaction are pending ❒ Databases and OSes have a lot in common! ❒ Databases get a better roadmap ❒ At any point before the transaction is ❍ SQL queries provide up front map of transactions data committed, it might also be aborted access intentions ❒ If a transaction is aborted, the system will ❍ General processes change pattern based on user input and are not as structured in their data access undo or rollback the effects of any specifications individual operations which have completed ❍ Some OSes provide APIs for programs to declare their intentions -3 -4 ACID properties of Durability? Transactions ❒ (A)tomicity ❒ How can we guarantee that committed ❍ Happen as a unit – all of nothing changes are remembered even in the face ❒ (C)onsistency of failures? ❍ Integrity constraints on data are maintained ❒ Remembering = saving the data to some ❒ (I)solation kind of storage device ❍ Other transactions cannot see or interfere with the intermediate stages of a transaction ❒ (D)urability ❍ Committed changes are reflected in the data permanently even in the face of failures in the system ❒ Atomicity, consistency and isolation are all the result of synchronization among transactions like the synchronization we have been studying between processes -5 -6

  2. Types of Storage So what does this mean? ❒ Processes that run on in a computer system ❒ Volatile Storage write the data they compute into registers, ❍ DRAM memory loses its contents when the power is then into caches, then into DRAM removed ❒ Non-Volatile Storage ❍ These are all volatile! (but they are also fast) ❍ Hard disks, floppy disks, CDs, tape drives are all ❒ To survive most common system crashes, examples of storage that does not lose its contents when data must be written from DRAM onto disk power is removed ❍ This in non-volatile but much slower than DRAM ❒ Stable Storage ❒ To survive “all” crashes, the data must be ❍ Still non-volatile storage can lose its contents (magnets, duplicated to an off-site server or written microwave ovens, sledge hammers,..) ❍ “Stable storage” implies that the data has been backed to tape or ….. (how paranoid are you/how up to multiple locations such that it is never lost important is your data?) -7 -8 ACID? Log-Based Recovery ❒ So how are we going to guarantee that ❒ While running a transaction, do not make changes to the real data; instead make notes in a log about transactions fulfill all the ACID properties what *would* change ❍ Synchronize data access among multiple ❒ Anytime before commit can just purge the records transactions from the log ❍ Make sure that before commit, all the changes ❒ At commit time, write a “commit” record in the log are saved to at least non-volatile storage so that even if you crash immediately after that ❍ Make sure that before commit we are able to you will find these notes on non-volatile storage undo any intermediate changes if an abort is after rebooting requested ❒ Only after commit, process these notes into real ❒ How? changes to the data -9 -10 Log records Recovery After Crash ❒ Transaction Name or Id ❒ Read log ❍ Is this part of a commit or an abort? ❒ If see operations for a transaction but not ❒ Data Item Name transaction commit, then undo those operations ❍ What will change? ❒ Old Value ❒ If see the commit, then redo the transaction to make sure that its affects ❒ New Value are durable ❒ 2 phases – look for all committed then go back and look for all their intermediate operations -11 -12

  3. Making recovery faster Synchronization ❒ Reading the whole log can be quite time ❒ Just like the execution of our critical sections consuming ❒ The final state of multiple transactions running must the same as if they ran one after another in ❍ If log is long then transactions at beginning are likely to already have been incorporated. isolation ❒ Therefore, the system can periodically ❍ We could just have all transactions share a lock such that only one runs at a time write outs its entire state and then discard ❍ Does that sound like a good idea for some huge the log to that point transaction processing system (like airline reservations ❒ This is called a checkpoint say?) ❒ In the case of recovery, the system just ❒ We would like as much concurrency among transactions as possible needs to read in the last checkpoint and process the log that came after it -13 -14 Serializability Serializability ❒ Serial execution of transaction A and B ❒ Certainly strictly serial access provides atomicity, consistency and isolation ❍ Op 1 in transaction A ❍ Op 2 in transaction A ❍ One lock and each transaction must hold it for ❍ …. the whole time ❍ Op N in transaction A ❒ Relax this by allowing the overlap of non- ❍ Op 1 in transaction B conflicting operations ❍ Op 2 in transaction B ❍ … ❒ Also allow possibly conflicting operations to ❍ Op N in transaction B proceed in parallel and then abort one only ❒ All of A before any of B if detect conflict ❒ Note: Does not apply outcome of A then B is same and B then A! -15 -16 Timestamp-Based Protocols Timestamp-Ordering ❒ Method for selecting the order among ❒ If timestamp of transaction wanting to conflicting transactions read data < write timestamp on the data then it would have needed to read a value ❒ Associate with each transaction a number already overwritten so abort the reading which is the timestamp or clock value when transaction the transaction begins executing ❒ If timestamp if transaction wanting to ❒ Associate with each data item the largest read data < read timestamp on the data timestamp of any transaction that wrote then the last read would be invalid but it is the item and another the largest commited so abort the writing transaction timestamp of a transaction reading the item ❒ Ability to abort is crucial! -17 -18

  4. Outtakes Is logging expensive? ❒ Yes and no ❍ Yes because it requires two writes to nonvolatile storage (disk) ❍ Not necessarily because each of these two writes can be done more efficiently than the original • Logging is sequential • Playing the log can be reordered for efficient disk access -19 -20 Deadlock ❒ We’d also like to avoid deadlock among transactions ❒ Common solution here is breaking “hold and wait” ❒ Two phase locking approach ❍ Generalization of getting all the locks you need at once then just release them as you no longer need them ❍ Growing phase – transaction may obtain locks but not release any • Violates hold and wait? ❍ Shrinking phase – transaction may release locks but not obtain any -21

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend