Download presentation
Presentation is loading. Please wait.
Published byJordan Pullman Modified over 9 years ago
1
CS 245Notes 081 CS 245: Database System Principles Notes 08: Failure Recovery Hector Garcia-Molina
2
CS 245Notes 082 Integrity or correctness of data Would like data to be “accurate” or “correct” at all times EMP Name White Green Gray Age 52 3421 1
3
CS 245Notes 083 Integrity or consistency constraints Predicates data must satisfy Examples: - x is key of relation R - x y (func. dependency) holds in R -Domain(x) = {Red, Blue, Green} -no employee should make more than twice the average salary
4
CS 245Notes 084 Definition: Consistent state: satisfies all constraints Consistent DB: DB in consistent state
5
CS 245Notes 085 Constraints ( as we use here) may not capture “full correctness” Example 1 Transaction constraints When salary is updated, new salary > old salary When account record is deleted, balance = 0
6
CS 245Notes 086 Note: could be “emulated” by simple constraints, e.g., if deleted = true, then balance = 0 account Acct #….balancedeleted?
7
CS 245Notes 087 Example 2 Database should reflect real world DB Reality Constraints ( as we use here) may not capture “full correctness”
8
CS 245Notes 088 in any case, continue with constraints... Observation: DB cannot be consistent always! Example: a 1 + a 2 +…. a n = TOT ( constraint ) Deposit $100 in a 2 : a 2 a 2 + 100 TOT TOT + 100
9
CS 245Notes 089 a 2 TOT.... 50.... 1000.... 150.... 1000.... 150.... 1100 Example: a 1 + a 2 +…. a n = TOT ( constraint ) Deposit $100 in a 2 : a 2 a 2 + 100 TOT TOT + 100
10
CS 245Notes 0810 Transaction: collection of actions that preserve consistency Consistent DBConsistent DB’ T
11
CS 245Notes 0811 Big assumption: If T starts with consistent state + T executes in isolation T leaves consistent state
12
CS 245Notes 0812 How can constraints be violated? Transaction bug (incomplete transaction) DBMS bug (some process) Hardware failure e.g., disk crash alters balance of account Data sharing e.g.: T1: give 10% raise to programmers T2: change programmers systems analysts
13
CS 245Notes 0813 Our failure model processor memory disk CPU M D
14
CS 245Notes 0814 Events Desired Undesired Expected Unexpected
15
CS 245Notes 0815 Desired events: see product manuals…. Undesired expected events: System crash - memory lost - cpu halts, resets Undesired Unexpected: Everything else! that’s it!!
16
CS 245Notes 0816 Examples: Disk data is lost Memory lost without CPU halt CPU implodes wiping out universe…. Undesired Unexpected: Everything else!
17
CS 245Notes 0817 Is this model reasonable? Approach: Add low level checks + redundancy to increase probability model holds E.g., Replicate disk storage (RAID) Memory parity CPU checks
18
Memory Disk x x x t P INPUT(X)READ(X,t) WRITE(X,t) OUTPUT(X) Storage hierarchy
19
CS 245Notes 0819 Operations: Input (x): block containing x memory Output (x): block containing x disk Read (x,t): do input(x) if necessary t value of x in block Write (x,t): do input(x) if necessary value of x in block t
20
CS 245Notes 0820 Key problem Unfinished transaction ExampleConstraint: A=B T 1 : A A 2 B B 2
21
CS 245Notes 0821 T 1 :Read (A,t); t t 2 Write (A,t); Read (B,t); t t 2 Write (B,t); Output (A); Output (B); A: 8 B: 8 A: 8 B: 8 memory disk
22
CS 245Notes 0822 T 1 :Read (A,t); t t 2 Write (A,t); Read (B,t); t t 2 Write (B,t); Output (A); Output (B); A: 8 B: 8 A: 8 B: 8 memory disk 16
23
CS 245Notes 0823 T 1 :Read (A,t); t t 2 Write (A,t); Read (B,t); t t 2 Write (B,t); Output (A); Output (B); A: 8 B: 8 A: 8 B: 8 memory disk 16 failure!
24
Steps of a transaction and its effect on memory and disk Action tM-AM-BD-AD-B 1.READ(A,t) 8888 2.t := t*2 16888 3.WRITE(A,t) 161688 4.READ(B,t) 816888 5.t := t*2 1616888 6.WRITE(B,t) 16161688 7.OUTPUT(A) 161616168 8.OUTPUT(B) 1616161616
25
CS 245Notes 0825 Need atomicity: execute all actions of a transaction or none at all One solution: undo logging (immediate modification on disk)
26
CS 245Notes 0826 The transaction manager will send messages about actions of transactions to the log manager, to the buffer manager about when it is possible or necessary to copy the buffer back to disk, and to the query processor to execute the queries and other database operations that comprise the transaction. The log manager maintains the log. It must deal with the buffer manager, since space for the log initially appears in main-memory buffers, and at certain times these buffers must be copied to disk.
27
CS 245Notes 0827 T 1 :Read (A,t); t t 2 A=B Write (A,t); Read (B,t); t t 2 Write (B,t); Output (A); Output (B); A:8 B:8 A:8 B:8 memory disk log Undo logging (Immediate modification)
28
CS 245Notes 0828 T 1 :Read (A,t); t t 2 A=B Write (A,t); Read (B,t); t t 2 Write (B,t); Output (A); Output (B); A:8 B:8 A:8 B:8 memory disk log Undo logging (Immediate modification) 16
29
CS 245Notes 0829 T 1 :Read (A,t); t t 2 A=B Write (A,t); Read (B,t); t t 2 Write (B,t); Output (A); Output (B); A:8 B:8 A:8 B:8 memory disk log Undo logging (Immediate modification) 16 16
30
CS 245Notes 0830 T 1 :Read (A,t); t t 2 A=B Write (A,t); Read (B,t); t t 2 Write (B,t); Output (A); Output (B); A:8 B:8 A:8 B:8 memory disk log Undo logging (Immediate modification) 16 16 16
31
CS 245Notes 0831 T 1 :Read (A,t); t t 2 A=B Write (A,t); Read (B,t); t t 2 Write (B,t); Output (A); Output (B); A:8 B:8 A:8 B:8 memory disk log Undo logging (Immediate modification) 16 16 16
32
CS 245Notes 0832 One “complication” Log is first written in memory Not written to disk on every action memory DB Log A: 8 16 B: 8 16 Log: A: 8 B: 8
33
CS 245Notes 0833 One “complication” Log is first written in memory Not written to disk on every action memory DB Log A: 8 16 B: 8 16 Log: A: 8 B: 8 16 BAD STATE # 1
34
CS 245Notes 0834 One “complication” Log is first written in memory Written to disk before action memory DB Log A: 8 16 B: 8 16 Log: A: 8 B: 8 16 BAD STATE # 2...
35
CS 245Notes 0835 Undo logging rules (1) For every action generate undo log record (containing old value) (2) Before x is modified on disk, log records pertaining to x must be on disk (write ahead logging: WAL) (3) Before commit is flushed to log, all writes of transaction must be reflected on disk
36
Order of steps and disk writes in case of UNDO log StepActivitytM-AM-BD-AD-BLog 1) 2)READ(A,t) 8888 3)t := t*2 16888 4)WRITE(A,t) 161688 5)READ(B,t) 816888 6)t := t*2 1616888 7)WRITE(B,t) 16161688 8)FLUSH LOG 9)OUTPUT(A) 161616168 10)OUTPUT(B) 1616161616 11) 12)FLUSH LOG 36
37
CS 245Notes 0837 Recovery rules: Undo logging For every Ti with in log: - If or in log, do nothing - Else For all in log: write (X, v) output (X ) Write to log
38
CS 245Notes 0838 Recovery rules: Undo logging For every Ti with in log: - If or in log, do nothing - Else For all in log: write (X, v) output (X ) Write to log IS THIS CORRECT??
39
CS 245Notes 0839 Recovery rules: Undo logging (1) Let S = set of transactions with in log, but no (or ) record in log (2) For each in log, in reverse order (latest earliest) do: - if Ti S then - write (X, v) - output (X) (3) For each Ti S do - write to log
40
CS 245Notes 0840 What if failure during recovery? No problem! Undo idempotent
41
Recovery from Undo log StepActivitytM-AM-BD-AD-BLog 1) 2)READ(A,t) 8888 3)t := t*2 16888 4)WRITE(A,t) 161688 5)READ(B,t) 816888 6)t := t*2 1616888 7)WRITE(B,t) 16161688 8)FLUSH LOG 9)OUTPUT(A) 161616168 10)OUTPUT(B) 1616161616 11) 12)FLUSH LOG The crash occurs after step (12). Then the record reached disk before the crash. When we recover, we do not undo the results of T, and all log records concerning T are ignored by the recovery manager.
42
Recovery from Undo log StepActivitytM-AM-BD-AD-BLog 1) 2)READ(A,t) 8888 3)t := t*2 16888 4)WRITE(A,t) 161688 5)READ(B,t) 816888 6)t := t*2 1616888 7)WRITE(B,t) 16161688 8)FLUSH LOG 9)OUTPUT(A) 161616168 10)OUTPUT(B) 1616161616 11) 12)FLUSH LOG The crash occurs between steps (11) and (12). If record reached disk see previous case, if not, see next case.
43
Recovery from Undo log StepActivitytM-AM-BD-AD-BLog 1) 2)READ(A,t) 8888 3)t := t*2 16888 4)WRITE(A,t) 161688 5)READ(B,t) 816888 6)t := t*2 1616888 7)WRITE(B,t) 16161688 8)FLUSH LOG 9)OUTPUT(A) 161616168 10)OUTPUT(B) 1616161616 11) 12)FLUSH LOG The crash occurs between steps (10) and (11). Now, the COMMIT record surely was not written, so T is incomplete and is undone as in the previous case.
44
Recovery from Undo log StepActivitytM-AM-BD-AD-BLog 1) 2)READ(A,t) 8888 3)t := t*2 16888 4)WRITE(A,t) 161688 5)READ(B,t) 816888 6)t := t*2 1616888 7)WRITE(B,t) 16161688 8)FLUSH LOG 9)OUTPUT(A) 161616168 10)OUTPUT(B) 1616161616 11) 12)FLUSH LOG The crash occurs between steps (8) and (10). Again, T is undone. In this case the change to A and/or B may not have reached disk. Nevertheless, the proper value, 8, is restored for each of these database elements.
45
Recovery from Undo log StepActivitytM-AM-BD-AD-BLog 1) 2)READ(A,t) 8888 3)t := t*2 16888 4)WRITE(A,t) 161688 5)READ(B,t) 816888 6)t := t*2 1616888 7)WRITE(B,t) 16161688 8)FLUSH LOG 9)OUTPUT(A) 161616168 10)OUTPUT(B) 1616161616 11) 12)FLUSH LOG The crash occurs prior to step (8). Now, it is not certain whether any of the log records concerning T have reached disk. If the change to A and/or B reached disk, then the corresponding log record reached disk. Therefore if there were changes to A and/or B made on disk by T, then the corresponding log record will cause the recovery manager to undo those changes.
46
CS 245Notes 0846 To discuss: Redo logging Undo/redo logging, why both? Real world actions Checkpoints Media failures
47
CS 245Notes 0847 Redo logging (deferred modification) T 1: Read(A,t); t t 2; write (A,t); Read(B,t); t t 2; write (B,t); Output(A); Output(B) A: 8 B: 8 A: 8 B: 8 memory DB LOG
48
CS 245Notes 0848 Redo logging (deferred modification) T 1: Read(A,t); t t 2; write (A,t); Read(B,t); t t 2; write (B,t); Output(A); Output(B) A: 8 B: 8 A: 8 B: 8 memory DB LOG 16
49
CS 245Notes 0849 Redo logging (deferred modification) T 1: Read(A,t); t t 2; write (A,t); Read(B,t); t t 2; write (B,t); Output(A); Output(B) A: 8 B: 8 A: 8 B: 8 memory DB LOG 16 output 16
50
CS 245Notes 0850 Redo logging (deferred modification) T 1: Read(A,t); t t 2; write (A,t); Read(B,t); t t 2; write (B,t); Output(A); Output(B) A: 8 B: 8 A: 8 B: 8 memory DB LOG 16 output 16
51
CS 245Notes 0851 Redo logging rules (1) For every action, generate redo log record (containing new value) (2) Before X is modified on disk (DB), all log records for transaction that modified X (including commit) must be on disk (3) Flush log at commit (4) Write END record after DB updates flushed to disk
52
REDO logging rules Step Activity tM-AM-BD-AD-BLog 1) 2)READ(A,t) 8888 3)t := t*2 16888 4)WRITE(A,t) 161688 5)READ(B,t) 816888 6)t := t*2 1616888 7)WRITE(B,t) 16161688 8) 9)FLUSH LOG 10)OUTPUT(A) 161616168 11)OUTPUT(B) 1616161616 12) 13)FLUSH LOG
53
CS 245Notes 0853 For every Ti with in log: –For all in log: Write(X, v) Output(X) Recovery rules: Redo logging
54
CS 245Notes 0854 For every Ti with in log: –For all in log: Write(X, v) Output(X) Recovery rules: Redo logging IS THIS CORRECT??
55
CS 245Notes 0855 (1) Let S = set of transactions with (and no ) in log (2) For each in log, in forward order (earliest latest) do: - if Ti S then Write(X, v) Output(X) (3) For each Ti S, write Recovery rules: Redo logging
56
In the Textbook you find this modified version. This way we use the same log records as in UNDO logging. In the following we use this version. This is synchronized with UNDO log. Modified REDO log We don’t use record for completed transactions, but use for incomplete ones.
57
CS 245Notes 0857 (1) Let S = set of transactions with in log (2) For each in log, in forward order (earliest latest) do: - if Ti S then Write(X, v) Output(X) (3) For each Ti NOT in S, write Recovery rules: Modified Redo log
58
CS 245Notes 0858 Checkpoint Periodically: (1) Do not accept new transactions (2) Wait until all transactions finish (3) Flush all log records to disk (log) (4) Flush all buffers to disk (DB) (do not discard buffers) (5) Write “checkpoint” record on disk (log) (6) Resume transaction processing simple checkpoint
59
CS 245Notes 0859 Example: what to do at recovery? Redo log (disk): Checkpoint Crash...
60
CS 245Notes 0860 Key drawbacks: Undo logging: need frequent disk writes Redo logging: need to keep all modified blocks inmemory until commit
61
CS 245Notes 0861 Solution: undo/redo logging! Update
62
CS 245Notes 0862 Rules Page X can be flushed before or after Ti commit Log record flushed before corresponding updated page (WAL) Flush at commit (log only) UR1 Before modifying any database element X on disk because of changes made by some transaction T, it is necessary that the update record appear on disk. UR2 A record must be flushed to disk as soon as it appears in the log.
63
CS 245Notes 0863 Example: Undo/Redo logging what to do at recovery? log (disk): Crash... The undo/redo recovery policy is: 1. Redo all the committed transactions in the order earliest-first, and 2. Undo all the incomplete transactions in the order latest-first.
64
CS 245Notes 0864 Non-quiesce checkpoint L O G for undodirty buffer pool pages flushed Start-ckpt active TR: Ti,T2,... end ckpt...
65
CS 245Notes 0865 Media failure (loss of non-volatile storage) A: 16 Solution: Make copies of data!
66
CS 245Notes 0866 Example 1 Triple modular redundancy Keep 3 copies on separate disks Output(X) --> three outputs Input(X) --> three inputs + vote X1X2 X3
67
CS 245Notes 0867 Example #2 Redundant writes, Single reads Keep N copies on separate disks Output(X) --> N outputs Input(X) --> Input one copy - if ok, done - else try another one Assumes bad data can be detected
68
CS 245Notes 0868 Example #3: DB Dump + Log backup database active database log If active database is lost, – restore active database from backup – bring up-to-date using redo entries in log
69
Backup Database Just like checkpoint, except that we write full database CS 245Notes 0869 database create backup database: for i := 1 to DB_Size do [read DB block i; write to backup] [transactions run concurrently]
70
Backup Database Just like checkpoint, except that we write full database CS 245Notes 0870 database create backup database: for i := 1 to DB_Size do [read DB block i; write to backup] [transactions run concurrently] Restore from backup DB and log: Similar to recovery from checkpoint and log
71
CS 245Notes 0871 When can log be discarded? check- point db dump last needed undo not needed for media recovery redo not needed for undo after system failure not needed for redo after system failure log time last needed undo not needed for media recovery
72
CS 245Notes 0872 Summary Consistency of data One source of problems: failures - Logging - Redundancy Another source of problems: Data Sharing..... next
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.