1 / 15

Recovery II: Surviving Aborts and System Crashes

Recovery II: Surviving Aborts and System Crashes. prevLSN. XID. type. pageID. length. offset. before-image. after-image. The Big Picture: What’s Stored Where. LOG. RAM. DB. LogRecords. Xact Table lastLSN status Dirty Page Table recLSN flushedLSN. Data pages each with a

brandip
Télécharger la présentation

Recovery II: Surviving Aborts and System Crashes

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Recovery II: Surviving Aborts and System Crashes

  2. prevLSN XID type pageID length offset before-image after-image The Big Picture: What’s Stored Where LOG RAM DB LogRecords Xact Table lastLSN status Dirty Page Table recLSN flushedLSN Data pages each with a pageLSN master record

  3. Simple Transaction Abort • For now, consider an explicit abort of a Xact. • No crash involved. • We want to “play back” the log in reverse order, UNDOing updates of the Xact. • Get lastLSN of Xact from Xact table. • Can follow chain of log records backward via the prevLSN field. • Before starting UNDO, write an Abort log record. • For recovering from crash during UNDO!

  4. Abort, cont. • To perform UNDO, must have a lock on data! • No problem! • Before restoring old value of a page, write a CLR: • You continue logging while you UNDO!! • CLR has one extra field: undonextLSN • Points to the next LSN to undo (i.e. the prevLSN of the record we’re currently undoing). • CLRs never Undone (but they might be Redone when repeating history: guarantees Atomicity!) • At end of UNDO, write an “end” log record.

  5. Transaction Commit • Write commit record to log. • All log records up to Xact’s lastLSN are flushed. • Guarantees that flushedLSN ³ lastLSN. • Note that log flushes are sequential, synchronous writes to disk. • Many log records per log page. • Commit() returns. • Write end record to log.

  6. Crash Recovery: Big Picture Oldest log rec. of Xact active at crash • Start from a checkpoint (found via master record). • Three phases. Need to: • Figure out which Xacts committed since checkpoint, which failed (Analysis). • REDOall actions. • (repeat history) • UNDO effects of failed Xacts. Smallest recLSN in dirty page table after Analysis Last chkpt CRASH A R U

  7. Recovery: The Analysis Phase • Reconstruct state at checkpoint. • via end_checkpoint record. • Scan log forward from checkpoint. • End record: Remove Xact from Xact table. • Other records: Add Xact to Xact table, set lastLSN=LSN, change Xact status on commit. • Update record: If P not in Dirty Page Table, • Add P to D.P.T., set its recLSN=LSN.

  8. Recovery: The REDO Phase • We repeat History to reconstruct state at crash: • Reapply allupdates (even of aborted Xacts!), redo CLRs. • Scan forward from log rec containing smallest recLSN in D.P.T. For each CLR or update log rec LSN, REDO the action unless we can verify that the change has already been written to disk, i.e.: • Affected page is not in the Dirty Page Table, or • Affected page is in D.P.T., but has recLSN > LSN, or • pageLSN (in DB) ³ LSN.

  9. To REDO An Action • Reapply logged action. • Set pageLSN to LSN. No additional logging! • Use of CLRs ensures that no change (including a change made during Undo) is ever carried out twice on the disk copy of an object. • Makes it possible to record changes logically (e.g., increment by 1) instead of physically (i.e., before and after images of affected bytes).

  10. Recovery: The UNDO Phase ToUndo={ l | l a lastLSN of a “loser” Xact} Repeat: • Choose largest LSN among ToUndo. • If this LSN is a CLR and undonextLSN==NULL • Write an End record for this Xact. • If this LSN is a CLR, and undonextLSN != NULL • Add undonextLSN to ToUndo • Else this LSN is an update. Undo the update, write a CLR, add prevLSN to ToUndo. Until ToUndo is empty.

  11. RAM Example of Recovery LSN LOG 00 05 10 20 30 40 45 50 60 begin_checkpoint end_checkpoint update: T1 writes P5 update T2 writes P3 T1 abort CLR: Undo T1 LSN 10 T1 End update: T3 writes P1 update: T2 writes P5 CRASH, RESTART prevLSNs Xact Table lastLSN status Dirty Page Table recLSN flushedLSN ToUndo

  12. RAM Example: Crash During Restart! LSN LOG 00,05 10 20 30 40,45 50 60 70 80,85 90,95 begin_checkpoint, end_checkpoint update: T1 writes P5 update T2 writes P3 T1 abort CLR: Undo T1 LSN 10, T1 End update: T3 writes P1 update: T2 writes P5 CRASH, RESTART CLR: Undo T2 LSN 60 CLR: Undo T3 LSN 50, T3 end CRASH, RESTART CLR: Undo T2 LSN 20, T2 end undonextLSN Xact Table lastLSN status Dirty Page Table recLSN flushedLSN ToUndo

  13. Additional Crash Issues • What happens if system crashes during Analysis? During REDO? • How do you limit the amount of work in REDO? • Flush asynchronously in the background. • Watch for “hot spots”. • How do you limit the amount of work in UNDO? • Avoid long-running Xacts.

  14. Summary of Logging/Recovery • Recovery Manager guarantees Atomicity & Durability. • Use WAL to allow STEAL/NO-FORCE w/o sacrificing correctness. • LSNs identify log records; linked into backwards chains per transaction (via prevLSN). • pageLSN allows comparison of data page and log records.

  15. Summary, Cont. • Checkpointing: A quick way to limit the amount of log to scan on recovery. • Recovery works in 3 phases: • Analysis: Forward from checkpoint. • Redo: Forward from oldest recLSN. • Undo: Backward from end to first LSN of oldest Xact alive at crash. • Upon Undo, write CLRs. • Redo “repeats history”: Simplifies the logic!

More Related