《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 19 Recovery System

Chapter 19:Recovery System Database System Concepts,7th Ed. @Silberschatz,Korth and Sudarshan See www.db-book.com for conditions on re-use
Database System Concepts, 7th Ed. ©Silberschatz, Korth and Sudarshan See www.db-book.com for conditions on re-use Chapter 19: Recovery System

Outline Failure Classification Storage Structure Recovery and Atomicity ■Log-Based Recovery Remote Backup Systems Database System Concepts-7th Edition 19.2 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 19.2 ©Silberschatz, Korth and Sudarshan th Edition Outline ▪ Failure Classification ▪ Storage Structure ▪ Recovery and Atomicity ▪ Log-Based Recovery ▪ Remote Backup Systems

Failure Classification Transaction failure: Logical errors:transaction cannot complete due to some internal error condition System errors:the database system must terminate an active transaction due to an error condition (e.g.,deadlock) System crash:a power failure or other hardware or software failure causes the system to crash. Fail-stop assumption:non-volatile storage contents are assumed to not be corrupted by system crash Database systems have numerous integrity checks to prevent corruption of disk data Disk failure:a head crash or similar disk failure destroys all or part of disk storage 。 Destruction is assumed to be detectable:disk drives use checksums to detect failures Database System Concepts-7th Edition 19.3 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 19.3 ©Silberschatz, Korth and Sudarshan th Edition Failure Classification ▪ Transaction failure : • Logical errors: transaction cannot complete due to some internal error condition • System errors: the database system must terminate an active transaction due to an error condition (e.g., deadlock) ▪ System crash: a power failure or other hardware or software failure causes the system to crash. • Fail-stop assumption: non-volatile storage contents are assumed to not be corrupted by system crash ▪ Database systems have numerous integrity checks to prevent corruption of disk data ▪ Disk failure: a head crash or similar disk failure destroys all or part of disk storage • Destruction is assumed to be detectable: disk drives use checksums to detect failures

Recovery Algorithms Suppose transaction T;transfers $50 from account A to account B Two updates:subtract 50 from A and add 50 to B Transaction 7;requires updates to A and B to be output to the database. A failure may occur after one of these modifications have been made but before both of them are made. Modifying the database without ensuring that the transaction will commit may leave the database in an inconsistent state Not modifying the database may result in lost updates if failure occurs just after transaction commits Recovery algorithms have two parts 1.Actions taken during normal transaction processing to ensure enough information exists to recover from failures 2.Actions taken after a failure to recover the database contents to a state that ensures atomicity,consistency and durability Database System Concepts-7th Edition 19.4 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 19.4 ©Silberschatz, Korth and Sudarshan th Edition Recovery Algorithms ▪ Suppose transaction Ti transfers $50 from account A to account B • Two updates: subtract 50 from A and add 50 to B ▪ Transaction Ti requires updates to A and B to be output to the database. • A failure may occur after one of these modifications have been made but before both of them are made. • Modifying the database without ensuring that the transaction will commit may leave the database in an inconsistent state • Not modifying the database may result in lost updates if failure occurs just after transaction commits ▪ Recovery algorithms have two parts 1. Actions taken during normal transaction processing to ensure enough information exists to recover from failures 2. Actions taken after a failure to recover the database contents to a state that ensures atomicity, consistency and durability

Storage Structure Volatile storage: Does not survive system crashes Examples:main memory,cache memory Nonvolatile storage: Survives system crashes Examples:disk,tape,flash memory,non-volatile RAM But may still fail,losing data ■Stable storage: A mythical form of storage that survives all failures Approximated by maintaining multiple copies on distinct nonvolatile media See book for more details on how to implement stable storage Database System Concepts-7th Edition 19.5 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 19.5 ©Silberschatz, Korth and Sudarshan th Edition Storage Structure ▪ Volatile storage: • Does not survive system crashes • Examples: main memory, cache memory ▪ Nonvolatile storage: • Survives system crashes • Examples: disk, tape, flash memory, non-volatile RAM • But may still fail, losing data ▪ Stable storage: • A mythical form of storage that survives all failures • Approximated by maintaining multiple copies on distinct nonvolatile media • See book for more details on how to implement stable storage

Stable-Storage Implementation Maintain multiple copies of each block on separate disks copies can be at remote sites to protect against disasters such as fire or flooding. Failure during data transfer can still result in inconsistent copies:Block transfer can result in Successful completion Partial failure:destination block has incorrect information Total failure:destination block was never updated Protecting storage media from failure during data transfer(one solution): 。 Execute output operation as follows (assuming two copies of each block): 1.Write the information onto the first physical block. 2.When the first write successfully completes,write the same information onto the second physical block. 3.The output is completed only after the second write successfully completes. Database System Concepts-7th Edition 19.6 @Silberschatz,Korth and Sudarshan
Database System Concepts - 7 19.6 ©Silberschatz, Korth and Sudarshan th Edition Stable-Storage Implementation ▪ Maintain multiple copies of each block on separate disks • copies can be at remote sites to protect against disasters such as fire or flooding. ▪ Failure during data transfer can still result in inconsistent copies: Block transfer can result in • Successful completion • Partial failure: destination block has incorrect information • Total failure: destination block was never updated ▪ Protecting storage media from failure during data transfer (one solution): • Execute output operation as follows (assuming two copies of each block): 1. Write the information onto the first physical block. 2. When the first write successfully completes, write the same information onto the second physical block. 3. The output is completed only after the second write successfully completes

Protecting storage media from failure (Cont.) Copies of a block may differ due to failure during output operation. To recover from failure: 1.First find inconsistent blocks: 1.Expensive solution:Compare the two copies of every disk block 2.Better solution: Record in-progress disk writes on non-volatile storage(Flash, Non-volatile RAM or special area of disk). Use this information during recovery to find blocks that may be inconsistent,and only compare copies of these. Used in hardware RAID systems 2.If either copy of an inconsistent block is detected to have an error (bad checksum),overwrite it by the other copy.If both have no error, but are different,overwrite the second block by the first block. Database System Concepts-7th Edition 19.7 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 19.7 ©Silberschatz, Korth and Sudarshan th Edition Protecting storage media from failure (Cont.) ▪ Copies of a block may differ due to failure during output operation. ▪ To recover from failure: 1. First find inconsistent blocks: 1. Expensive solution: Compare the two copies of every disk block. 2. Better solution: • Record in-progress disk writes on non-volatile storage (Flash, Non-volatile RAM or special area of disk). • Use this information during recovery to find blocks that may be inconsistent, and only compare copies of these. • Used in hardware RAID systems 2. If either copy of an inconsistent block is detected to have an error (bad checksum), overwrite it by the other copy. If both have no error, but are different, overwrite the second block by the first block

Data Access Physical blocks are those blocks residing on the disk. Buffer blocks are the blocks residing temporarily in main memory. ■ Block movements between disk and main memory are initiated through the following two operations: input(B)transfers the physical block B to main memory. output(B)transfers the buffer block B to the disk,and replaces the appropriate physical block there. We assume,for simplicity,that each data item fits in,and is stored inside, a single block. Database System Concepts-7th Edition 19.8 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 19.8 ©Silberschatz, Korth and Sudarshan th Edition Data Access ▪ Physical blocks are those blocks residing on the disk. ▪ Buffer blocks are the blocks residing temporarily in main memory. ▪ Block movements between disk and main memory are initiated through the following two operations: • input (B) transfers the physical block B to main memory. • output (B) transfers the buffer block B to the disk, and replaces the appropriate physical block there. ▪ We assume, for simplicity, that each data item fits in, and is stored inside, a single block

Data Access (Cont.) ■ Each transaction T has its private work-area in which local copies of all data items accessed and updated by it are kept. Ti's local copy of a data item X is called x;. Transferring data items between system buffer blocks and its private work- area done by: read(X)assigns the value of data item X to the local variable x,. write(X)assigns the value of local variable x;to data item {X in the buffer block. Note:output(B)need not immediately follow write(X).System can perform the output operation when it deems fit. ■Transactions Must perform read(X)before accessing X for the first time(subsequent reads can be from local copy) write()can be executed at any time before the transaction commits Database System Concepts-7th Edition 19.9 @Silberschatz,Korth and Sudarshan
Database System Concepts - 7 19.9 ©Silberschatz, Korth and Sudarshan th Edition Data Access (Cont.) ▪ Each transaction Ti has its private work-area in which local copies of all data items accessed and updated by it are kept. • Ti 's local copy of a data item X is called xi . ▪ Transferring data items between system buffer blocks and its private workarea done by: • read(X) assigns the value of data item X to the local variable xi . • write(X) assigns the value of local variable xi to data item {X} in the buffer block. • Note: output(BX) need not immediately follow write(X). System can perform the output operation when it deems fit. ▪ Transactions • Must perform read(X) before accessing X for the first time (subsequent reads can be from local copy) • write(X) can be executed at any time before the transaction commits

Example of Data Access buffer Buffer Block A input(A) A Buffer Block B B output(B) read(X) write(Y) ×2☐ y work area work area ofT1 of T2 memory disk Database System Concepts-7th Edition 19.10 @Silberschatz,Korth and Sudarshan
Database System Concepts - 7 19.10 ©Silberschatz, Korth and Sudarshan th Edition Example of Data Access
按次数下载不扣除下载券;
注册用户24小时内重复下载只扣除一次;
顺序:VIP每日次数-->可用次数-->下载券;
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 18 Concurrency Control.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 17 Transactions.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 16 Query Optimization.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 15 Query Processing.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 14 Indexing.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 13 Data Storage Structures.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 12 Physical Storage Systems.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 11 Data Analytics.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 10 Big Data.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 1 Introduction(Avi Silberschatz Henry F. Korth S. Sudarshan).pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter 9 Object-Based Databases.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter 8 Application Design and Development.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter 7 Relational Database Design.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter 6 Entity-Relationship Model.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter 5 Other Relational Languages.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter 4 Advanced SQL.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter 3 SQL.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter Advanced Transaction Processing.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter 24 Advanced Data Types.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter 23 Advanced Application Development.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 2 Intro to Relational Model.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 20 Database System Architectures.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 21 Parallel and Distributed Storage.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 22 Parallel and Distributed Query Processing.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 23 Parallel and Distributed Transaction Processing.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 24 Advanced Indexing.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 25 Advanced Application Development.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 26 Blockchain Databases.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 27 Formal-Relational Query Languages.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 28 Advanced Relational Database Design.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 29 Object-Based Databases.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 3 Introduction to SQL.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 30 XML.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 31 Information Retrieval.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 4 Intermediate SQL.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 5 Advanced SQL.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 6 Database Design Using the E-R Model.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 7 Normalization.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 8 Complex Data Types.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 9 Application Development.pptx