Presentation is loading. Please wait.

Presentation is loading. Please wait.

Transactions. 421B: Database Systems - Transactions 2 Transaction Processing q Most of the information systems in businesses are transaction based (databases.

Similar presentations


Presentation on theme: "Transactions. 421B: Database Systems - Transactions 2 Transaction Processing q Most of the information systems in businesses are transaction based (databases."— Presentation transcript:

1 Transactions

2 421B: Database Systems - Transactions 2 Transaction Processing q Most of the information systems in businesses are transaction based (databases or TP-Monitors). q The market for transaction processing is many tens of billions of dollars per year q Past: transaction processing was used mostly in large companies q Now: WWW, small TP-Monitors, CORBA, Internet provider, J2EE have a need for transactions q Transactions are now no more just a database technology, they started to be a core distributed information systems technology.

3 421B: Database Systems - Transactions 3 Business transactions q Business transaction: involves exchange between two or more entities (selling, buying, renting, booking ….). q In computers: business transactions become electronic transactions (same ideas) Buyer Seller State Book-keeping

4 421B: Database Systems - Transactions 4 Money Transfer 1. Transfer(id1,id2,value) SELECT balance into :balance FROM accounts WHERE accountid = :id1 balance += value UPDATE accounts SET balance = :balance WHERE accountid = :id1 SELECT balance into :balance FROM accounts WHERE accountid = :id2 balance -= value UPDATE accounts SET balance = :balance WHERE accountid = :id2 1. read(A) 2. A := A + 50 3. write(A) 4. read(B) 5. B := B - 50 6. write(B)

5 421B: Database Systems - Transactions 5 Electronic transaction q A txn encapsulate operations that belong logically together I Operations within the DBS increase account of seller, decrease account of buyer I Operations outside the DBS: the good is given to the buyer I Electronic txn: programming and DB part I Consider transaction as a sphere of control in which to encapsulate certain behavior of particular pieces of code I A transaction is basically a set of service invocations, usually from a program (or a interactive user interface)

6 421B: Database Systems - Transactions 6 Some issues q An electronic transaction is not simply a sequence of DB operations but a complex idea: I Specify of what operations build a transaction I Transactions must be correct even if many of them are running concurrently (at the same time over the same data). I Transactions must be atomic. Partially executed transactions are almost always incorrect I Legally, most business transactions require a written record. So do electronic transactions I The system must handle a high volume (high throughput), must provide fast response time, and must be available all the time (mission critical).

7 421B: Database Systems - Transactions 7 Automated Teller Machine q Tables: I AccountBalance(Acct#, balance) I HotCard-List(Accct#): stolen/canceled/suspended cards I AccountVelocity(Acct#,sumWithdrawals): stores the latest transaction and accumulated amount I PostingLog(Acct#,ATMid,Amount): a record of each operation q Operations for withdrawal: I GetInput(Acct#,ATMid,type,PIN,Txn-id,Amount) I Write request to PostingLog I Check PIN I Check Acct# with HotCard-List table I Check Acct# with AccountVelocity table I Update AccountVelocity table I Update balance in AccountBalance I Write withdrawal record to PostingLog I Commit transaction and dispense money.

8 421B: Database Systems - Transactions 8 Stock Exchange q Tables I Users: list of traders and market watchers I Stocks I BuyOrders/SellOrders: orders entered during the day I Trades: all trades executed during the day I Price: buy and sell total volume, and number of orders for each stock and price I Log: all users’ requests and system replies I notificationMsg: all messages sent to the users

9 421B: Database Systems - Transactions 9 Stock Exchange q Operation execute trade: I Read information about stock from stock table I Get timestamp I Read scheduled trading periods for the stock I Check validity of operation (time, value, price) I If valid, find a matching trade operation, update trades, notif, orders, prices, stocks, … I Write the system’s response to the log I Commit transaction I Broadcast the new situation q Volumes bank/stock: 250000 transactions per day

10 421B: Database Systems - Transactions 10 Application vs. DBS q A user’s 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. q A transaction is the DBMS’s abstract view of a user program: a sequence of read operations r(X) and write operations w(X) on objects (X) (tuple, relation,…) of the DB I Read: bring object into main memory from disk, send value to application (same as copy value into program variable) I Write: bring object into main memory from disk and modify it. Write it back to disk (might be done sometime later) q Need for concurrency: I There might be considerable time between the submission of two consecutive SQL statements within one transaction I While the DBS is reading a tuple from the disk, the CPU can be used to parse and compile the SQL statements of other transactions.

11 421B: Database Systems - Transactions 11 ACID Properties q The success of transactions was due to well-defined properties that are provided by transactional systems: I ATOMICITY: A transaction is atomic if it is executed in its entirety or not at all I CONSISTENCY: a transaction must preserve the consistency of the data I ISOLATION: in case that transactions are executed concurrently: The effect must be the same as if each transaction were the only one in the system. I DURABILITY: The changes made by a transaction must be permanent (= they must not be lost in case of failures)

12 421B: Database Systems - Transactions 12 Atomicity q ALL or NOTHING principle I In Money transfer: if transaction fails after step 3 partial results should be undone I A transaction T might commit after completing all its actions. If the user is informed about the commit he/she can be sure that all changes performed by T are installed in the DB. I A transaction might abort (or be aborted by the DBMS) after executing some actions. In this case the DBMS undoes all modifications so far. After the abort the DB state is as if the transaction had never started. After notification of abort the user knows that none of the transaction’s modifications is reflected in the database. l Local recovery: eliminating partial results

13 421B: Database Systems - Transactions 13 Atomicity consistent database inconsistent database Txn Recovery Manager Database log abort

14 421B: Database Systems - Transactions 14 Consistency q Each transaction must leave the database in a consistent state if the DB is consistent when the transaction begins. I In Money transfer: sum of balances of two accounts the same before and after transaction execution I This is the responsibility of the application! q In practice, transactions make mistakes (introduce negative salaries, empty social security numbers, different names for the same person …). These mistakes violate database consistency. q Limited forms of data consistency can be enforced by the system through integrity constraints: Null constraints, foreign keys, check constraints… q Integrity constraints acts as filters determining whether a transaction is acceptable or not. consistent database consistent database Txn

15 421B: Database Systems - Transactions 15 Isolation q Isolation: Users submit transactions, and can think of each transaction as executing by itself. q The DBMS, however, allows many transactions being executed concurrently over the same data. I By allowing several transactions to execute concurrently we can keep the CPU busy and process more transactions per time unit. q Isolation is enforced by a concurrency control protocol, which aims at guaranteeing serializability. I Net effect of transactions executing concurrently is identical to executing all transactions one after the other in some serial order I In Money transfer: disallow that concurrent transaction reads balance of both accounts after step 3 and before step 6

16 421B: Database Systems - Transactions 16 Isolation consistent database inconsistent database Txn 1 Txn 2 Concurrency Control Txn 1 Txn 2 consistent database consistent database …

17 421B: Database Systems - Transactions 17 Durability q Durability: There must be a guarantee that the changes introduced by a transaction will last,i.e., survive failures In Money transfer: once user has confirmation the change must persist in database despite possible crash In case of failures, I Server Crash: l restart server and perform global recovery: sbringing the database back into an consistent state sAt the time of the crash, some transactions might have been in the middle of execution: their modifications performed so far must be undone (abort of these transactions) sAt the time of the crash, not all changes of committed transactions might have been reflected in the database: redo these modifications. l In order to be able to perform recovery: logging of additional information during normal processing I Disk Crash: use replication: database backups, mirrored disks.

18 421B: Database Systems - Transactions 18 Global Recovery consistent db consistent db Txn System crash Recovery Manager Database log incon- sistent db

19 421B: Database Systems - Transactions 19 Architecture Transaction Manager Scheduler (concurrency control) Recovery Manager Buffer Manager Buffer Stable DB Txn (r,w,c,a) Log

20 421B: Database Systems - Transactions 20 Architecture q Each of the modules is a complex component I Highly optimized; many engineering optimizations q Components highly interconnected I Modularity only partially given I Complex calling strategies I One module relies heavily on the semantics of other modules


Download ppt "Transactions. 421B: Database Systems - Transactions 2 Transaction Processing q Most of the information systems in businesses are transaction based (databases."

Similar presentations


Ads by Google