Introduction To Transaction Processing
Introduction To Transaction Processing
Introduction
CSEP 545 Transaction Processing Philip A. Bernstein Sameh Elnikety
Copyright 2012 Philip A. Bernstein
1/4/2012
Outline
1. The Basics 2. ACID Properties 3. Atomicity and Two-Phase Commit 4. Performance 5. Scalability
1/4/2012
Reserve an airline seat. Buy an airline ticket. Withdraw money from an ATM. Verify a credit card sale. Order an item from an Internet retailer. Place a bid at an on-line auction. Submit a corporate purchase order.
3
Reliability - system should rarely fail Availability - system must be up all the time Response time - within 1-2 seconds Throughput - thousands of transactions/second Scalability - start small, ramp up to Internet-scale Security for confidentiality and high finance Configurability - for above requirements + low cost Atomicity - no partial results Durability - a transaction is a legal contract Distribution - of users and data
4
1/4/2012
TP System Infrastructure
Users viewpoint
Enter a request from a browser or other display device The system performs some application-specific work, which includes database accesses Receive a reply (usually, but not always)
TP system makes it easy to program transactions TP system has tools to make it easy to manage
1/4/2012 6
TP System Infrastructure
Defines System and Application Structure
End-User
Client
requests
Request Controller
(routes requests and supervises their execution)
Back-End (Server)
7
System Characteristics
Typically < 100 transaction types per application Transaction size has high variance. Typically,
0-30 disk accesses 10K - 1M instructions executed 2-20 messages
Availability
Fraction of time system is able to do useful work Some systems are very sensitive to downtime Airline reservation, stock exchange, on-line retail, Downtime is front page news Downtime Availability 1 hour/day 95.8% 1 hour/week 99.41% 1 hour/month 99.86% 1 hour/year 99.9886% 1 hour/20years 99.99942% Contributing factors Failures due to environment, system mgmt, h/w, s/w Recovery time 1/4/2012
Application Servers
A software product to create, execute and manage TP applications Formerly called TP monitors. Some people say App Server = TP monitor + web functionality. Programmer writes an app to process a single request. App Server scales it up to a large, distributed system
E.g. application developer writes programs to debit a checking account and verify a credit card purchase. App Server helps system engineer deploy it to 10s/100s of servers and 10Ks of displays App Server helps system engineer deploy it on the Internet, accessible from web browsers
1/4/2012 10
Enterprise Java Beans, IBM Websphere, Microsoft .NET (COM+), Oracle Weblogic and Application Server
1/4/2012 11
Network
Transaction Server
12
Request Controller
Request Controller
Interbank Transfer
1/4/2012
Checking Accounts
Loan Accounts
13
Request Controller
Transaction Server
1/4/2012
intranet
other TP systems
Transaction Server
14
Internet Retailer
The Internet
Toys Books
Web Server
Request Controller
Music
1/4/2012
Electronics
Computers
15
Toys Books
Web Server
Request Controller
Music
1/4/2012
Electronics
Computers
16
EAI and Application Servers address a similar problem, with different emphasis Examples
IBM Websphere MQ, TIBCO, Vitria, Sun SeeBeyond
1/4/2012 17
Queues
EAI Routing
Queues
EAI Routing
Interbank Transfer
1/4/2012
Checking Accounts
Loan Accounts
18
Checking Accounts
Loan Accounts
Heterogeneous query systems (mediators). Its database system software, but Its similar to EAI with more focus on data transformations than on message mgmt.
1/4/2012 20
Transactional Middleware
In summary, there are many variations that package different combinations of middleware features
Application Server Enterprise Application Integration Business process management (aka Workflow) Enterprise Server Bus
This course focuses primarily on the Database System and Application Server
1/4/2012 22
Outline
1. The Basics 2. ACID Properties 3. Atomicity and Two-Phase Commit 4. Performance 5. Scalability
1/4/2012
23
1/4/2012
24
Atomicity
All-or-nothing, no partial results
E.g. in a money transfer, debit one account, credit the other. Either debit and credit both run, or neither runs. Successful completion is called Commit Transaction failure is called Abort
Commit and abort are irrevocable actions An Abort undoes operations that already executed
For database operations, restore the datas previous value from before the transaction But some real world operations are not undoable
Examples - transfer money, print ticket, fire missile
1/4/2012 25
System crashes
26
Brain transport
Compensating Transactions
A transaction that reverses the effect of another transaction (that committed). For example,
Adjustment in a financial system Annul a marriage
Consistency
Every transaction should maintain DB consistency
Referential integrity - E.g., each order references an existing customer number and existing part numbers The books balance (debits = credits, assets = liabilities)
Consistency preservation is a property of a transaction, not of the TP system (unlike the A, I, and D of ACID) If each transaction maintains consistency, then serial executions of transactions do too
1/4/2012 29
Some Notation
ri[x] = Read(x) by transaction Ti wi[x] = Write(x) by transaction Ti ci = Commit by transaction Ti ai = Abort by transaction Ti A history is a sequence of such operations, in the order that the database system processed them
30
1/4/2012
Consistency predicate is x > y Serial executions preserve consistency. Interleaved executions may not. H = r1[x] r2[x] r2[y] w2[x] w1[y]
e.g., try it with x=4 and y=2 initially
1/4/2012 31
Isolation
Intuitively, the effect of a set of transactions should be the same as if they ran independently Formally, an interleaved execution of transactions is serializable if its effect is equivalent to a serial one Implies a user view where the system runs each users transaction stand-alone Of course, transactions in fact run with lots of concurrency, to use device parallelism
32
1/4/2012
Serializability Example 1
T1: Start; A = Read(x); A = A + 1; Write(x, A); Commit; T2: Start; B = Read(y); B = B + 1; Write(y, B); Commit;
1/4/2012
33
Serializability Example 2
T1: Start; A = Read(x); A = A + 1; Write(x, A); Commit; T2: Start; B = Read(x); B = B + 1; Write(y, B); Commit;
1/4/2012
H = r1[x] r2[x] w1[x] c1 w2[y] c2 H is equivalent to executing T2 followed by T1 Note, H is not equivalent to T1 followed by T2 Also, note that T1 started before T2 and finished before T2, yet the effect is that T2 ran first
34
Serializability Examples
Client must control the relative order of transactions, using handshakes (wait for T1 to commit before submitting T2) Some more serializable executions r1[x] r2[y] w2[y] w1[x] T1 T2 T2 T1 r1[y] r2[y] w2[y] w1[x] T1 T2 T2 T1 r1[x] r2[y] w2[y] w1[y] T2 T1 T1 T2 Serializability says the execution is equivalent to some serial order, not necessarily to all serial orders
1/4/2012 35
Non-Serializable Examples
r1[x] r2[x] w2[x] w1[x] (race condition)
e.g., T1 and T2 are each adding 100 to x
Durability
When a transaction commits, its results will survive failures (e.g., of the application, OS, DB system even of the disk) Makes it possible for a transaction to be a legal contract Implementation is usually via a log
DB system writes all transaction updates to its log To commit, it adds a record commit(Ti) to the log When the commit record is on disk, the transaction is committed System waits for disk ack before acking to user
1/4/2012 37
Outline
1. The Basics 2. ACID Properties 3. Atomicity and Two-Phase Commit 4. Performance 5. Scalability
1/4/2012
38
Two-Phase Commit
Main idea - all resource managers (RMs) save a durable copy of the transactions updates before any of them commit If one RM fails after another commits, the failed RM can still commit after it recovers The protocol to commit transaction T
Phase 1 - Ts coordinator asks all participant RMs to prepare the transaction. Each participant RM replies prepared after Ts updates are durable. Phase 2 - After receiving prepared from all participant RMs, the coordinator tells all participant RMs to commit
1/4/2012 40
Other Transaction Managers 1. Start transaction returns a unique transaction identifier 2. Resource accesses include the transaction identifier For each transaction, RM registers with TM 3. When application asks TM to commit, the TM runs two-phase commit Resource Manager Transaction Manager (TM)
1/4/2012 41
Outline
1. The Basics 2. ACID Properties 3. Atomicity and Two-Phase Commit 4. Performance 5. Scalability
1/4/2012
42
10% application server plus application 30% communications system (not counting presentation) 50% DB system http://www.tpc.org
TP Performance Council (TPC) sets standards TPC A & B (89-95), now TPC C & E
1/4/2012 43
44
TPC-C Transactions
New-Order
Get records describing a warehouse, customer, & district Update the district Increment next available order number Insert record into Order and New-Order tables For 5-15 items, get Item record, get/update Stock record Insert Order-Line Record
Payment, Order-Status, Delivery, Stock-Level have similar complexity, with different frequencies tpmC = number of New-Order transaction per min
1/4/2012 46
Comments on TPC-C
Enables apples-to-apples comparison of TP systems Does not predict how your application will run, or how much hardware you will need, or which system will work best on your workload Not all vendors optimize for TPC-C
Some high-end system sales require custom benchmarks
47
1/4/2012
TPC-E
Approved in 2007 Models a stock trading app for brokerage firm Should replace TPC-C, its database-centric More complex but less disk IO per transaction
1/4/2012
49
TPC-E
33 tables in four sets
Market data (11 tables)
Scale
500 customers per tpsE
1/4/2012 50
TPC-E Transactions
Activities
Stock-trade, customer-inquiry, feeds from markets, market-analysis
Completes a stock market trade Receive from market exchange confirmation & price Update customers holdings Update broker commission Record historical information
51
TPC-E Transactions
Name
Broker-Volume Customer-Position
Access Description
RO RO DSS-type medium query What am I worth? Processing of Stock Ticker Whats the market doing? Details about a security Look up historical trade info Enter a stock trade Completion of a stock trade Check status of trade order Correct historical trade info
52
RW RO RO RO RW RW RO RW
1/4/2012
53
Outline
1. The Basics 2. ACID Properties 3. Atomicity and Two-Phase Commit 4. Performance 5. Scalability
1/4/2012
54
1.5 Scalability
Techniques for better performance
Textbook, Chapter 2, Section 6
Scale-up
Caching Resource Pooling
Scale-out
Partitioning Replication
1/4/2012
55
Caching
Key idea
Use more memory Keep a copy of data from its permanent home Accessing a cached copy is fast
Key issues
Which data to keep
Popular read-only data
Caching
Applied at multiple levels
Database and application server
Updates
Write through
Better cache coherence
Write back
Batching and write absorption
Example products
Memcached, MS Velocity
1/4/2012
57
Resource Pooling
Key idea
If a logical resource is expensive to create and cheap to access, then manage a pool of the resource
Examples
Session pool Thread pool
1/4/2012
58
Partitioning
To add system capacity, add server machines Sometimes, you can just relocate some server processes to different machines But if an individual server process overloads one machine, then you need to partition the process
Example One server process manages flights, cars, and hotel rooms. Later, you partition them in separate processes. We need mapping from resource name to server name
1/4/2012
59
Partitioning: Routing
Sometimes, its not enough to partition by resource type, because a resource is too popular
Example: flights
Replication
Replication - using multiple copies of a server or resource for better availability and performance.
Replica and Copy are synonyms
1/4/2012
61
Replicated Server
Can replicate servers on a common resource
Data sharing - DB servers communicate with shared disk
Resource
Helps availability for process (not resource) failure Requires a replica cache coherence mechanism, so this helps performance only if
Little conflict between transactions at different servers or Loose coherence guarantees (e.g. read committed)
1/4/2012 62
Replicated Resource
To get more improvement in availability, replicate the resources (too) Also increases potential throughput This is whats usually meant by replication
Client Server Replica 1 Resource replica
1/4/2012
Outline
1. The Basics 2. ACID Properties 3. Atomicity and Two-Phase Commit 4. Performance 5. Scalability
1/4/2012
64
Whats Next?
This chapter covered TP system structure and properties of transactions and TP systems The rest of the course drills deeply into each of these areas, one by one.
1/4/2012
65
Next Steps
We covered
Chapter 1 Chapter 2, Section 6
1/4/2012
66