Heisenbugs and Bohrbugs: Why are they different?
|
|
|
- Edgar Todd
- 10 years ago
- Views:
Transcription
1 Heisenbugs and Bohrbugs: Why are they different? March 8, 2003 Abstract Jim Gray proposed a classification of bugs based on the type of failures they induce. Bohrbugs are bugs which always cause a failure when a particular operation is performed. Heisenbugs are bugs which may or may not cause a fault for a given operation. It has often been questioned as to whether these two bug categories are the same or different. The main reason for the argument is that if everything is the same, a bug should resurface and then by definition a Heisenbug should be the same as a Bohrbug. We take the position that Heisenbugs and Bohrbugs are different types of bugs. As argument, we try to clarify the definition of Heisenbugs and Bohrbugs and explain what an operation really means in context of the definitions. Although Heisenbugs could resurface if the conditions which lead to the failure reappear, we show that it is very difficult to recreate the conditions which existed when the fault first happened. After giving evidence in our favor, we explain how to debug software systems in the presence of Heisenbugs. 1 Introduction J. Gray [1] put forth the hypothesis that bugs occurring in a computer system can be classified into two types: Heisenbugs and Bohrbugs. The basis for the classification was the ease with which the failure produced by the bug could be repeated. If a Bohrbug is present in the system, there would always be a failure on retying the operation which caused the failure. In case of a Heisenbug, the error could vanish on a retry. Bohrbug was named after the Bohr atom. Just as the Bohr atom is solid, a Bohrbug is also solid and easily detectable by standard debugging techniques. The word Heisenbug comes from Heisenberg s Uncertainty Principle which states that it is fundamentally impossible to predict the position and momentum of a particle at the same time. If we try to apply standard debugging techniques such as cyclic debugging [5] to catch the error, we may find that the error has disappeared. Bohrbug is also called a permanent fault while Heisenbug is called as a transient or intermittent fault [2]. Note that inspite of the name, in both cases the fault is very much there at all times. According to J.Gray, most industry software systems are released after design reviews, quality assurance, alpha, beta and gamma testing. They are mostly free from Bohrbugs which easily get caught as they are solid, but Heisenbugs may persist. As a result, most software failures in software systems are soft i.e. if the software system is restarted it would function correctly. 2 Software System and its environment It is very important to understand what a software system and its environment consists of, before dealing with the subject of bugs. A process 1
2 consists of 1. program 2. data 3. stack In addition, the process depends on a number of external factors for its faultless execution, to name a few: 1. Hardware 2. Operating System Code and Data structures 3. Other programs which it synchronizes with The initial set of items form the software system, while the later set constitutes the environment of the system. We should note that for a given program the state of the first set of items only depends on the input to a program. By input, we mean the parameters to a program or the data values accepted as input via I/O. Given a program and initial state of data and stack areas, for some input, the program should act so as to move the data and stack state to a predictable state. This can be easily inferred from the program correctness rules by [12]. However, we cannot assume that the evironmental factors are the same every time the program is run. The OS code might do process scheduling, memory management differently each time the program is run, the hardware might have changed, other programs might have changed their behavior. 3 The Argument It has often been debated in academic circles as to whether Heisenbugs and Bohrbugs are the same. The fundamental reason for the debate is that the classification scheme uses failure as a means of classifying the fault. If we could get the failure to occur again, all Heisenbugs would be Bohrbugs. We do not consider this line of argument to be correct and take the position that Heisenbugs and Bohrbugs are distinct. In section 4, we will explain the main arguments in favor of classifying Heisenbugs and Bohrbugs together as a single category of bugs. Sections 5, 6, 7, 8 refute those arguments and explain why we need the two categories. Conclusion and implications of our position are present in section 9. 4 Counterclaims It is claimed that Heisenbugs are same as Bohrbugs since it is theoretically possible to recreate a failure caused due to a Heisenbug. If we can create the exact environment that was present during the execution of the program the first time and provide the same input, the failure should occur again and hence according to definition, the bug should be a Bohrbug. This argument is based on the fact that computer systems are discrete hence there are only a finite number of states possible for a computer system. This effectively means that if we could get the computer back into that state which caused the error to happen, we could make the failure to reappear again. Another argument is that for a Bohrbug to happen, we must perform the same operation on the program. The operation being external to the program is also an environmental factor. Therefore, both Heisenbug and Bohrbug can appear or disappear based on whether the environmental factors which caused the error are still present, so there is no difference between the two. We do not agree with the above statements. The first argument is no good because although software systems are discrete there are many factors such as timing of asynchronous operations and clock drift that come into play so that it is not possible to recreate exactly the same conditions 2
3 once again. The second argument strongly depends on the definition of the two kinds of faults and we think the key to the argument is the word operation. An operation is the input provided to the program. As we have told before, we consider input to be parameters to methods and data values received as input through IO. It should not be mixed up with any of the other environmental factors. We therefore think that Heisenbugs should be distinct from Bohrbugs. 5 Second Law of Thermodynamics According to the Second Law of Thermodynamics, the entropy of a closed system increases with time [6]. This means that the state of disorder in the system increases with time. If a program is executed once, there is an increase in the entropy of the system already. By system here, we mean the program plus its environment. The second time a program executes, even if we try the same operation, the disorder in the system is higher. The entropy is a measure of the probability of a particular state. This means that the state in which the system exists is more probable than what it was earlier. The present system has less information in it as compared to the previous state. If we want to retain old information, we will need to record it separately. In case of a computer system, this would require special logs. For example, if a disk drive has a disk platter which rotates and a drive head which moves over the head. It is quite possible that due to mechanical motion, the platter or the head has wear and tear and it loses mass and the operation of the disk will not be the same as before. Similarly, the keyboard, the mouse and other mechanical components may face slow wear and tear and change in behavior. It may therefore be impossible to get the same hardware environment as before. Although, one could argue that we could replace the hardware, but the problem still exists. The new hardware need not be similar to the old hardware (when it was younger). 6 Asynchronous Operations Although computer systems operate on the basis of a system clock, many operations in the computer are not synchronized to the system clock. Most of the peripheral devices use their own clock or are not clocked at all. This means that processes and the corresponding peripheral device operation may not be synchronized. This tremendously increases the number of states a computer system can be in, as the number of combinations of the state of the process and the state of the asynchronous operation can be large. Also, in case of unclocked operations, the concept of discrete states cannot be used and there could be infinite possibilities. The time required to complete an unclocked operation is measured in pure real time (not in clock time) which is a continuous quantity. These asynchronous operations create uncertainties regarding the working of a computer system particularly in the scheduling part. These uncertainties in time can then translate to disappearing bugs. 6.1 Example 1 - Disk Drive Operation The disk drive of a computer have variable seek time. Ifweruntheprogramonetimeandthen restart the system and rerun the program a second time, due to the variability of the seek time, for the same disk accesses coming in, we might get a different sequence of disk accesses. Processes are normally blocked if they need a page from the disk. Since, the disk access sequence is not the same, the processes may remain blocked or unblocked for variable amount of time and so the processes may not all be scheduled in the same sequence as before. This means that a race condition that happened before may not happen now. 3
4 6.2 Example 2 - Network Characteristics There are a large number of programs which use network connectivity. The traffic characteristic and load on the network cannot be duplicated in order to retest the system. Suppose packet 1 was originally lost once, in the second run also we must also lose it once. The delays encountered must be similar. On a lossy, best-effort networking infrastructure, this is a hard problem. 6.3 Example 3 - Software Clock Drift The software clock of a computer system is kept up to date by use of high priority interrupts. Periodically, an interrupt is generated and the Interrupt Service Routine(ISR) for that Interrupt increments a register keeping track of the time. If the interrupt is masked or in general, the interrupts are disabled, the ISR will not be called and the ISR will not execute causing the clock to lose time [13]. This might affect applications which use current time to perform some work. For redoing an operation, we cannot just take the clock back and restart, clock drift will not allow the application to run the same way as before. A random number generator, for example, uses the current time as its seed. It is possible that during retry (even after pushing back the clock), a different seed was obtained since the clock time when srand() was called will not match the previous case and that will give an entirely different sequence of random numbers. 6.4 Example 4 - Processor Clock Drift The processor clock depends on the crystal used. The crystals are normally precise in their frequency ratings but poor in accuracy. This means that the processor clock should be stable, however the frequency of these clocks strongly depend on the temperature and other environmental factors [13]. (environment here means the weather and other such conditions and is not the same as the the software environment mentioned earlier) Depending on temperature, the clock can run at a different rate and consequently scheduling could be altered, causing a previously present error to disappear. We can give an example as to how asynchronous operations can affect the correctness of a system. Let us assume that a system has non-blocking read operation. It is possible that if we do a non-blocking read instead of a blocking one by mistake, the buffer may not filled in at all. However, if we give more time to the system (lot of processes are running), the buffer may actually be filled and the bug just disappears [14]. This section thus explains how clock frequency and asynchronous operations distort the image of a computer system as being truely discrete. In the next section, we look at effects caused by trying to debug the system. 7 Probe effects Cyclic debugging techniques are normally used for debugging software. In this technique, on a failure, the code is attached to debugging utilities and a rerun is performed. However, the very fact that debugging tools have been attached to the program may cause the programs evironment to change. For example, if the debugger and the program runs in the same address space, the amount of memory [7] might be affected. Also, since an additional process is added, process scheduling might also be altered. This might lead to disappearance of the failure. We should note that we cannot do anything to remove this kind of probe effect and to eliminate the uncertainty introduced due to asynchronous operations. Doing so would require 100% precise deadline scheduling which has not been performed to date. Deadline scheduling is needed since we want to strictly control how the programs run. 4
5 8 Classification Criteria It is really interesting to know what is the distinguishing criteria between Heisenbugs and Bohrbugs. Classification of faults based on kind of failures that occur might not be the right classification. We need some intrinsic property of Heisenbugs and Bohrbugs which can separate the two. Jim Gray gives the possible Heisenbugs. They could be: 1. Strange hardware conditions (rare and transient hardware failure) 2. Special Limit conditions (out of storage, counter overflow, lost interrupt, etc) 3. Race conditions Carefully analyzing these faults, it is quite clear that Heisenbugs are caused due to interaction between conditions which occur outside the program being debugged and the program itself. The following can lead to Heisenbugs: 1. Uncertain environment (interrupt lost) 2. Wrong assumptions about the environment (memory is unlimited, so use and never free) 3. Wrong assumptions about the interaction between various subcomponents of a system (Program A and B use resource R, however when A is being written, we forget completely about B) On the other hand Bohrbugs must be caused by wrong specifications about the system itself or mistakes in converting the specifications to a design. We can conclude this since a Bohrbug always recurs on retrying the operation. This is possible only if the designer or programmer coded up the system behavior incorrectly for that particular operation. It could still be argued that since Bohrbugs are caused due to wrong code for some input while Heisenbugs are caused due to wrong code for some environmental conditions and since inputs to a program are part of the environment of the program, Heisenbugs and Bohrbugs are the same. This reasoning although correct only forces us to refine the definition of Heisenbugs and Bohrbugs. Heisenbugs are errors in the program s assumption about the environment (except the input values) and the interaction between the subcomponents. Bohrbugs are errors in the program s actions based on its input values. Thus we see a clear distinction between Heisenbug and Bohrbug. 9 Conclusion These arguments clearly indicate that Heisenbugs and Bohrbugs are distict types of bugs. The difference is contingent on two important observations. The asynchronous nature of computer processes and the definition of what constitutes an operation. The next question that should be answered is, in face of this uncertainty present, what strategies should we use to detect and eliminate bugs? We can take the analogy from Physics inorder to answer this question. On account of Heisenberg s uncertainty principle, we cannot predict the position and momentum of the particle at the same time. However, we can give a good probabilistic estimate of where the particle could be and what momentum it could have. Actually, In [8], the author makes a case for probabilistic modelling of software errors. In case of a Heisenbug, although we cannot repeat the failure by retrying the same operation, we could get a good probabilistic estimate of where the error should be. We can perform a number of operations which exercise different components of the system. Errors happen some time or they do not, but by using a large sample space, we should get good probabilistic estimate of which component should be faulty. This idea 5
6 has been proposed and implemented in [9]. Some may find statistical arguments hard to swallow, so other strategies are in use against Heisenbugs. We could simulate execution of the software system [10]. In a simulated environment, everything is under control of the simulators. The environment is repeatable and some Heisenbugs can be caught. However such a simulator may not catch all errors because the environment posed by the simulator is somewhat different from the real world environment. Another way of handling Heisenbugs is to introduce fault tolerance. In fault tolerance based schemes, the error is ignored and a new instance of the software system or component carries on the task. The idea is that if one instance of the system fails, the other could continue since its environment may not lead to a failure. Process pairs, N-version programming, etc [1] aid against Heisenbugs. Also, J. Gray[1] has given a rollback based scheme in which the occurrence of an error lead to retry after rollback. Since the environment must have changed the error, most probably the error would not repeat. [11] proposes a scheme in which debugging is combined with fault tolerance. If a fault occurs, a new error-free version of the component replaces the old component. The paper describes how to perform this while the system is online. Newer debugging techniques and fault tolerant schemes thus aid programmers against Heisenbugs. Acknowledgements I am grateful to Rich Martin for his valuable advice on this paper. Many thanks to Neeraj Krishnan and Vishal Shah for discussing the topic with me. References [1] J.Gray, Why do computers stop and what can be done about them?, Tandem TR 85.7 [2] M.Hiller, Software Fault-Tolerance Techniques from a Real-Time Systems Point of View - an overview, TR Department of Computer Engineering, Chamlers University of Technology, Sweden [3] P.Bepari, Distributed Process Management Protocol: A Protocol for Transparent Remote Execution of Processes in a Cluster of Heterogeneous Unix Systems, M.Tech Thesis, Dept. of Computer Science and Engineering, IIT Kanpur, April 1999 [4] M.Ronsse, K. De Bosschere, RecPlay: A fully Integrated Practical Record / Replay System, ACM Transactions on Computer Systems, May 1999 [5] B.Miller, J.Choi, A Mechanism for Efficient Debugging of Parallel Programs, SIGPLAN 1988 [6] E.Lieb, J.Yngvason, The Physics and Mathematics of The Second Law of Thermodynamics, June 1997 [7] V.Paxson, A Survey of Support For Implementing Debuggers, CS262, University of California, Berkeley, 1990 [8] D.Hamlet, Foundations of Software Testing: Dependability Theory, SIGSOFT, 1994 [9] M.Chen et al, PinPoint: Problem Determination in Large, Dynamic Internet Services, International Conference on Dependable Systems and Networks, Washington D.C., 2002 [10] L.Albertsson, P.Magnusson, Using Complete System Simulation for Temporal Debugging Of General Purpose Operating Systems and Workloads, MASCOTS 2000 [11] D.Gupta, P.Jalote, Increase Software Reliability through Rollback and On-line fault repair, Department of Computer Science and Engineering, IIT Kanpur [12] C.A.R.Hoare, An Axiomatic Basis for Computer Programming, Communications of the ACM, Vol 12, Issue 10, October
7 [13] [14] 7
What Is Specific in Load Testing?
What Is Specific in Load Testing? Testing of multi-user applications under realistic and stress loads is really the only way to ensure appropriate performance and reliability in production. Load testing
CS 6290 I/O and Storage. Milos Prvulovic
CS 6290 I/O and Storage Milos Prvulovic Storage Systems I/O performance (bandwidth, latency) Bandwidth improving, but not as fast as CPU Latency improving very slowly Consequently, by Amdahl s Law: fraction
Overview and History of Operating Systems
Overview and History of Operating Systems These are the notes for lecture 1. Please review the Syllabus notes before these. Overview / Historical Developments An Operating System... Sits between hardware
Evaluating the Accuracy of Maxim Real-Time Clocks (RTCs)
REAL-TIME CLOCKS Application Note 632: Aug 01, 2001 Evaluating the Accuracy of Maxim Real-Time Clocks (RTCs) This app note describes methods for measuring the accuracy of the Maxim Real-Time Clocks (RTCs)
Client/Server and Distributed Computing
Adapted from:operating Systems: Internals and Design Principles, 6/E William Stallings CS571 Fall 2010 Client/Server and Distributed Computing Dave Bremer Otago Polytechnic, N.Z. 2008, Prentice Hall Traditional
CS 464/564 Introduction to Database Management System Instructor: Abdullah Mueen
CS 464/564 Introduction to Database Management System Instructor: Abdullah Mueen LECTURE 14: DATA STORAGE AND REPRESENTATION Data Storage Memory Hierarchy Disks Fields, Records, Blocks Variable-length
Chapter 11 I/O Management and Disk Scheduling
Operating Systems: Internals and Design Principles, 6/E William Stallings Chapter 11 I/O Management and Disk Scheduling Dave Bremer Otago Polytechnic, NZ 2008, Prentice Hall I/O Devices Roadmap Organization
Operating Systems 4 th Class
Operating Systems 4 th Class Lecture 1 Operating Systems Operating systems are essential part of any computer system. Therefore, a course in operating systems is an essential part of any computer science
What is LOG Storm and what is it useful for?
What is LOG Storm and what is it useful for? LOG Storm is a high-speed digital data logger used for recording and analyzing the activity from embedded electronic systems digital bus and data lines. It
CS 3530 Operating Systems. L02 OS Intro Part 1 Dr. Ken Hoganson
CS 3530 Operating Systems L02 OS Intro Part 1 Dr. Ken Hoganson Chapter 1 Basic Concepts of Operating Systems Computer Systems A computer system consists of two basic types of components: Hardware components,
SYSTEM ecos Embedded Configurable Operating System
BELONGS TO THE CYGNUS SOLUTIONS founded about 1989 initiative connected with an idea of free software ( commercial support for the free software ). Recently merged with RedHat. CYGNUS was also the original
Real Time Programming: Concepts
Real Time Programming: Concepts Radek Pelánek Plan at first we will study basic concepts related to real time programming then we will have a look at specific programming languages and study how they realize
Chapter 18: The Structure of the Atom
Chapter 18: The Structure of the Atom 1. For most elements, an atom has A. no neutrons in the nucleus. B. more protons than electrons. C. less neutrons than electrons. D. just as many electrons as protons.
Chapter 14: Recovery System
Chapter 14: Recovery System Chapter 14: Recovery System Failure Classification Storage Structure Recovery and Atomicity Log-Based Recovery Remote Backup Systems Failure Classification Transaction failure
COMPUTER HARDWARE. Input- Output and Communication Memory Systems
COMPUTER HARDWARE Input- Output and Communication Memory Systems Computer I/O I/O devices commonly found in Computer systems Keyboards Displays Printers Magnetic Drives Compact disk read only memory (CD-ROM)
CSC 2405: Computer Systems II
CSC 2405: Computer Systems II Spring 2013 (TR 8:30-9:45 in G86) Mirela Damian http://www.csc.villanova.edu/~mdamian/csc2405/ Introductions Mirela Damian Room 167A in the Mendel Science Building [email protected]
MultiPARTES. Virtualization on Heterogeneous Multicore Platforms. 2012/7/18 Slides by TU Wien, UPV, fentiss, UPM
MultiPARTES Virtualization on Heterogeneous Multicore Platforms 2012/7/18 Slides by TU Wien, UPV, fentiss, UPM Contents Analysis of scheduling approaches Virtualization of devices Dealing with heterogeneous
COMP 7970 Storage Systems
COMP 797 Storage Systems Dr. Xiao Qin Department of Computer Science and Software Engineering Auburn University http://www.eng.auburn.edu/~xqin [email protected] COMP 797, Auburn University Slide 3b- Problems
Recovery and the ACID properties CMPUT 391: Implementing Durability Recovery Manager Atomicity Durability
Database Management Systems Winter 2004 CMPUT 391: Implementing Durability Dr. Osmar R. Zaïane University of Alberta Lecture 9 Chapter 25 of Textbook Based on slides by Lewis, Bernstein and Kifer. University
Middleware and Distributed Systems. System Models. Dr. Martin v. Löwis. Freitag, 14. Oktober 11
Middleware and Distributed Systems System Models Dr. Martin v. Löwis System Models (Coulouris et al.) Architectural models of distributed systems placement of parts and relationships between them e.g.
Spacecraft Computer Systems. Colonel John E. Keesee
Spacecraft Computer Systems Colonel John E. Keesee Overview Spacecraft data processing requires microcomputers and interfaces that are functionally similar to desktop systems However, space systems require:
Mutual Exclusion using Monitors
Mutual Exclusion using Monitors Some programming languages, such as Concurrent Pascal, Modula-2 and Java provide mutual exclusion facilities called monitors. They are similar to modules in languages that
Connectivity. Alliance Access 7.0. Database Recovery. Information Paper
Connectivity Alliance Access 7.0 Database Recovery Information Paper Table of Contents Preface... 3 1 Overview... 4 2 Resiliency Concepts... 6 2.1 Database Loss Business Impact... 6 2.2 Database Recovery
Fault Tolerant Servers: The Choice for Continuous Availability on Microsoft Windows Server Platform
Fault Tolerant Servers: The Choice for Continuous Availability on Microsoft Windows Server Platform Why clustering and redundancy might not be enough This paper discusses today s options for achieving
Chapter 11 I/O Management and Disk Scheduling
Operatin g Systems: Internals and Design Principle s Chapter 11 I/O Management and Disk Scheduling Seventh Edition By William Stallings Operating Systems: Internals and Design Principles An artifact can
16.1 MAPREDUCE. For personal use only, not for distribution. 333
For personal use only, not for distribution. 333 16.1 MAPREDUCE Initially designed by the Google labs and used internally by Google, the MAPREDUCE distributed programming model is now promoted by several
Linux Driver Devices. Why, When, Which, How?
Bertrand Mermet Sylvain Ract Linux Driver Devices. Why, When, Which, How? Since its creation in the early 1990 s Linux has been installed on millions of computers or embedded systems. These systems may
The Association of System Performance Professionals
The Association of System Performance Professionals The Computer Measurement Group, commonly called CMG, is a not for profit, worldwide organization of data processing professionals committed to the measurement
Real-Time Component Software. slide credits: H. Kopetz, P. Puschner
Real-Time Component Software slide credits: H. Kopetz, P. Puschner Overview OS services Task Structure Task Interaction Input/Output Error Detection 2 Operating System and Middleware Applica3on So5ware
Embedded Systems Lecture 9: Reliability & Fault Tolerance. Björn Franke University of Edinburgh
Embedded Systems Lecture 9: Reliability & Fault Tolerance Björn Franke University of Edinburgh Overview Definitions System Reliability Fault Tolerance Sources and Detection of Errors Stage Error Sources
Introduction to Automated Testing
Introduction to Automated Testing What is Software testing? Examination of a software unit, several integrated software units or an entire software package by running it. execution based on test cases
Chapter 6, The Operating System Machine Level
Chapter 6, The Operating System Machine Level 6.1 Virtual Memory 6.2 Virtual I/O Instructions 6.3 Virtual Instructions For Parallel Processing 6.4 Example Operating Systems 6.5 Summary Virtual Memory General
SOFTWARE-IMPLEMENTED SAFETY LOGIC Angela E. Summers, Ph.D., P.E., President, SIS-TECH Solutions, LP
SOFTWARE-IMPLEMENTED SAFETY LOGIC Angela E. Summers, Ph.D., P.E., President, SIS-TECH Solutions, LP Software-Implemented Safety Logic, Loss Prevention Symposium, American Institute of Chemical Engineers,
Network File System (NFS) Pradipta De [email protected]
Network File System (NFS) Pradipta De [email protected] Today s Topic Network File System Type of Distributed file system NFS protocol NFS cache consistency issue CSE506: Ext Filesystem 2 NFS
Chapter 1: Operating System Models 1 2 Operating System Models 2.1 Introduction Over the past several years, a number of trends affecting operating system design are witnessed and foremost among them is
Real-Time Scheduling 1 / 39
Real-Time Scheduling 1 / 39 Multiple Real-Time Processes A runs every 30 msec; each time it needs 10 msec of CPU time B runs 25 times/sec for 15 msec C runs 20 times/sec for 5 msec For our equation, A
Tools Page 1 of 13 ON PROGRAM TRANSLATION. A priori, we have two translation mechanisms available:
Tools Page 1 of 13 ON PROGRAM TRANSLATION A priori, we have two translation mechanisms available: Interpretation Compilation On interpretation: Statements are translated one at a time and executed immediately.
CS52600: Information Security
CS18000: Programming I CS52600: Information Security Vulnerability Analysis 15 November 2010 Prof. Chris Clifton Vulnerability Analysis Vulnerability: Lapse in enforcement enabling violation of security
Synchronization of sampling in distributed signal processing systems
Synchronization of sampling in distributed signal processing systems Károly Molnár, László Sujbert, Gábor Péceli Department of Measurement and Information Systems, Budapest University of Technology and
Connectivity. Alliance Access 7.0. Database Recovery. Information Paper
Connectivity Alliance 7.0 Recovery Information Paper Table of Contents Preface... 3 1 Overview... 4 2 Resiliency Concepts... 6 2.1 Loss Business Impact... 6 2.2 Recovery Tools... 8 3 Manual Recovery Method...
Service Design Best Practices
Service Design Best Practices James Hamilton 2009/2/26 Principals of Amazon Amazon Web Services e: [email protected] w: mvdirona.com/jrh/work b: perspectives.mvdirona.com Agenda Overview Recovery-Oriented
Platter. Track. Index Mark. Disk Storage. PHY 406F - Microprocessor Interfacing Techniques
Platter PHY 406F - icroprocessor Interfacing Techniques Disk Storage The major "permanent" storage medium for computers is, at present, generally magnetic media in the form of either magnetic tape or disks.
Module 1: Introduction to Computer System and Network Validation
Module 1: Introduction to Computer System and Network Validation Module 1, Slide 1 What is Validation? Definition: Valid (Webster s Third New International Dictionary) Able to effect or accomplish what
Fault Tolerance & Reliability CDA 5140. Chapter 3 RAID & Sample Commercial FT Systems
Fault Tolerance & Reliability CDA 5140 Chapter 3 RAID & Sample Commercial FT Systems - basic concept in these, as with codes, is redundancy to allow system to continue operation even if some components
Storage Technologies for Video Surveillance
The surveillance industry continues to transition from analog to digital. This transition is taking place on two fronts how the images are captured and how they are stored. The way surveillance images
Outline. hardware components programming environments. installing Python executing Python code. decimal and binary notations running Sage
Outline 1 Computer Architecture hardware components programming environments 2 Getting Started with Python installing Python executing Python code 3 Number Systems decimal and binary notations running
Confinement Problem. The confinement problem Isolating entities. Example Problem. Server balances bank accounts for clients Server security issues:
Confinement Problem The confinement problem Isolating entities Virtual machines Sandboxes Covert channels Mitigation 1 Example Problem Server balances bank accounts for clients Server security issues:
find model parameters, to validate models, and to develop inputs for models. c 1994 Raj Jain 7.1
Monitors Monitor: A tool used to observe the activities on a system. Usage: A system programmer may use a monitor to improve software performance. Find frequently used segments of the software. A systems
Chapter 3: Operating-System Structures. System Components Operating System Services System Calls System Programs System Structure Virtual Machines
Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines Operating System Concepts 3.1 Common System Components
Deploying and Optimizing SQL Server for Virtual Machines
Deploying and Optimizing SQL Server for Virtual Machines Deploying and Optimizing SQL Server for Virtual Machines Much has been written over the years regarding best practices for deploying Microsoft SQL
Client/Server Computing Distributed Processing, Client/Server, and Clusters
Client/Server Computing Distributed Processing, Client/Server, and Clusters Chapter 13 Client machines are generally single-user PCs or workstations that provide a highly userfriendly interface to the
Below is a diagram explaining the data packet and the timing related to the mouse clock while receiving a byte from the PS-2 mouse:
PS-2 Mouse: The Protocol: For out mini project we designed a serial port transmitter receiver, which uses the Baud rate protocol. The PS-2 port is similar to the serial port (performs the function of transmitting
Vehicle data acquisition using CAN By Henning Olsson, OptimumG [email protected]
Vehicle data acquisition using By Henning Olsson, OptimumG [email protected] Introduction: Data acquisition is one of the best tools to increase the understanding of vehicle behavior. One can
Distributed Systems Theory 6. Clock synchronization - logical vs. physical clocks. November 9, 2009
Distributed Systems Theory 6. Clock synchronization - logical vs. physical clocks November 9, 2009 1 Synchronization: single CPU sys vs. dist sys. Single CPU: DS: critical regions, mutual exclusion, and
Serial Communications
Serial Communications 1 Serial Communication Introduction Serial communication buses Asynchronous and synchronous communication UART block diagram UART clock requirements Programming the UARTs Operation
CS355 Hw 3. Extended Shell with Job Control
CS355 Hw 3 Due by the end of day Tuesday, Mar 18. Design document due on Thursday, Feb 27 in class. Written supplementary problems due on Thursday, March 6. Programming Assignment: You should team up with
How To Understand The Concept Of A Distributed System
Distributed Operating Systems Introduction Ewa Niewiadomska-Szynkiewicz and Adam Kozakiewicz [email protected], [email protected] Institute of Control and Computation Engineering Warsaw University of
Data Storage - II: Efficient Usage & Errors
Data Storage - II: Efficient Usage & Errors Week 10, Spring 2005 Updated by M. Naci Akkøk, 27.02.2004, 03.03.2005 based upon slides by Pål Halvorsen, 12.3.2002. Contains slides from: Hector Garcia-Molina
FEAWEB ASP Issue: 1.0 Stakeholder Needs Issue Date: 03/29/2000. 04/07/2000 1.0 Initial Description Marco Bittencourt
)($:(%$63 6WDNHKROGHU1HHGV,VVXH 5HYLVLRQ+LVWRU\ 'DWH,VVXH 'HVFULSWLRQ $XWKRU 04/07/2000 1.0 Initial Description Marco Bittencourt &RQILGHQWLDO DPM-FEM-UNICAMP, 2000 Page 2 7DEOHRI&RQWHQWV 1. Objectives
The EMSX Platform. A Modular, Scalable, Efficient, Adaptable Platform to Manage Multi-technology Networks. A White Paper.
The EMSX Platform A Modular, Scalable, Efficient, Adaptable Platform to Manage Multi-technology Networks A White Paper November 2002 Abstract: The EMSX Platform is a set of components that together provide
Debugging A MotoHawk Application using the Application Monitor
CONTROL SYSTEM SOLUTIONS Debugging A MotoHawk Application using the Application Monitor Author(s): New Eagle Consulting 3588 Plymouth Road, #274 Ann Arbor, MI 48105-2603 Phone: +1 (734) 929-4557 Ben Hoffman
Design Issues in a Bare PC Web Server
Design Issues in a Bare PC Web Server Long He, Ramesh K. Karne, Alexander L. Wijesinha, Sandeep Girumala, and Gholam H. Khaksari Department of Computer & Information Sciences, Towson University, 78 York
Do AUTOSAR and functional safety rule each other out?
Software development Do AUTOSAR and functional safety rule each other out? While simplicity is a factor in safety-critical applications, AUTOSAR has over 6,000 configuration parameters and well over 100,000
Copyright. Network and Protocol Simulation. What is simulation? What is simulation? What is simulation? What is simulation?
Copyright Network and Protocol Simulation Michela Meo Maurizio M. Munafò [email protected] [email protected] Quest opera è protetta dalla licenza Creative Commons NoDerivs-NonCommercial. Per
Embedded & Real-time Operating Systems
Universität Dortmund 12 Embedded & Real-time Operating Systems Peter Marwedel, Informatik 12 Germany Application Knowledge Structure of this course New clustering 3: Embedded System HW 2: Specifications
Lab 2.1 Tracking Down the Bugs
Lab 2.1 Tracking Down the Bugs Chapter 7 (To Err is Human ) discusses strategies for debugging finding and fixing problems with IT systems. In this lab, we focus on the early stages of debugging, where
HA / DR Jargon Buster High Availability / Disaster Recovery
HA / DR Jargon Buster High Availability / Disaster Recovery Welcome to Maxava s Jargon Buster. Your quick reference guide to Maxava HA and industry technical terms related to High Availability and Disaster
Mathematical Modelling of Computer Networks: Part II. Module 1: Network Coding
Mathematical Modelling of Computer Networks: Part II Module 1: Network Coding Lecture 3: Network coding and TCP 12th November 2013 Laila Daniel and Krishnan Narayanan Dept. of Computer Science, University
Amoeba Distributed Operating System
Amoeba Distributed Operating System Matt Ramsay Tim Kiegel Heath Memmer CS470 Case Study Paper 4/19/02 Amoeba Introduction The Amoeba operating system began as a research project at Vrije Universiteit
Introducing Storm 1 Core Storm concepts Topology design
Storm Applied brief contents 1 Introducing Storm 1 2 Core Storm concepts 12 3 Topology design 33 4 Creating robust topologies 76 5 Moving from local to remote topologies 102 6 Tuning in Storm 130 7 Resource
Agenda. Transaction Manager Concepts ACID. DO-UNDO-REDO Protocol DB101
Concepts Agenda Database Concepts Overview ging, REDO and UNDO Two Phase Distributed Processing Dr. Nick Bowen, VP UNIX and xseries SW Development October 17, 2003 Yale Oct 2003 Database System ACID index
Chapter 3: Operating-System Structures. Common System Components
Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System Design and Implementation System Generation 3.1
STUDY AND SIMULATION OF A DISTRIBUTED REAL-TIME FAULT-TOLERANCE WEB MONITORING SYSTEM
STUDY AND SIMULATION OF A DISTRIBUTED REAL-TIME FAULT-TOLERANCE WEB MONITORING SYSTEM Albert M. K. Cheng, Shaohong Fang Department of Computer Science University of Houston Houston, TX, 77204, USA http://www.cs.uh.edu
An On-Line Algorithm for Checkpoint Placement
An On-Line Algorithm for Checkpoint Placement Avi Ziv IBM Israel, Science and Technology Center MATAM - Advanced Technology Center Haifa 3905, Israel [email protected] Jehoshua Bruck California Institute
Domains. Seminar on High Availability and Timeliness in Linux. Zhao, Xiaodong March 2003 Department of Computer Science University of Helsinki
Domains Seminar on High Availability and Timeliness in Linux Zhao, Xiaodong March 2003 Department of Computer Science University of Helsinki 1 1. Introduction The Hardware Platform Interface (HPI) is developed
Computer Organization & Architecture Lecture #19
Computer Organization & Architecture Lecture #19 Input/Output The computer system s I/O architecture is its interface to the outside world. This architecture is designed to provide a systematic means of
Recovery: Write-Ahead Logging
Recovery: Write-Ahead Logging EN 600.316/416 Instructor: Randal Burns 4 March 2009 Department of Computer Science, Johns Hopkins University Overview Log-based recovery Undo logging Redo logging Restart
Types Of Operating Systems
Types Of Operating Systems Date 10/01/2004 1/24/2004 Operating Systems 1 Brief history of OS design In the beginning OSes were runtime libraries The OS was just code you linked with your program and loaded
Building highly available systems in Erlang. Joe Armstrong
Building highly available systems in Erlang Joe Armstrong How can we get 10 nines reliability? Why Erlang? Erlang was designed to program fault-tolerant systems Overview n Types of HA systems n Architecture/Algorithms
Chapter 2: Computer-System Structures. Computer System Operation Storage Structure Storage Hierarchy Hardware Protection General System Architecture
Chapter 2: Computer-System Structures Computer System Operation Storage Structure Storage Hierarchy Hardware Protection General System Architecture Operating System Concepts 2.1 Computer-System Architecture
Computer Architecture Prof. Mainak Chaudhuri Department of Computer Science and Engineering Indian Institute of Technology, Kanpur
Computer Architecture Prof. Mainak Chaudhuri Department of Computer Science and Engineering Indian Institute of Technology, Kanpur Lecture - 35 Input/Output (Refer Slide Time: 00:13) So, today we will
Practical issues in DIY RAID Recovery
www.freeraidrecovery.com Practical issues in DIY RAID Recovery Based on years of technical support experience 2012 www.freeraidrecovery.com This guide is provided to supplement our ReclaiMe Free RAID Recovery
Name: 1. CS372H: Spring 2009 Final Exam
Name: 1 Instructions CS372H: Spring 2009 Final Exam This exam is closed book and notes with one exception: you may bring and refer to a 1-sided 8.5x11- inch piece of paper printed with a 10-point or larger
71M6521 Energy Meter IC. Real Time Clock Compensation. The Challenge. The RTC in the 71M6521D/F. Theory of Operation APPLICATION NOTE
71M6521 Energy Meter IC A Maxim Integrated Products Brand APPLICATION NOTE AN_6521_035 MAY 2007 This document describes how to use software to compensate the real time clock (RTC) in Teridian meter chips.
Wireless Sensor Network Performance Monitoring
Wireless Sensor Network Performance Monitoring Yaqoob J. Al-raisi & David J. Parish High Speed Networks Group Loughborough University MSN Coseners 12-13th 13th July 2007 Overview The problem we are trying
Real Time Network Server Monitoring using Smartphone with Dynamic Load Balancing
www.ijcsi.org 227 Real Time Network Server Monitoring using Smartphone with Dynamic Load Balancing Dhuha Basheer Abdullah 1, Zeena Abdulgafar Thanoon 2, 1 Computer Science Department, Mosul University,
Lecture 18: Reliable Storage
CS 422/522 Design & Implementation of Operating Systems Lecture 18: Reliable Storage Zhong Shao Dept. of Computer Science Yale University Acknowledgement: some slides are taken from previous versions of
Comparison on Different Load Balancing Algorithms of Peer to Peer Networks
Comparison on Different Load Balancing Algorithms of Peer to Peer Networks K.N.Sirisha *, S.Bhagya Rekha M.Tech,Software Engineering Noble college of Engineering & Technology for Women Web Technologies
E190Q Lecture 5 Autonomous Robot Navigation
E190Q Lecture 5 Autonomous Robot Navigation Instructor: Chris Clark Semester: Spring 2014 1 Figures courtesy of Siegwart & Nourbakhsh Control Structures Planning Based Control Prior Knowledge Operator
Storage and File Systems. Chester Rebeiro IIT Madras
Storage and File Systems Chester Rebeiro IIT Madras 1 Two views of a file system system calls protection rwx attributes Application View Look & Feel File system Hardware view 2 Magnetic Disks Chester Rebeiro
Remote Copy Technology of ETERNUS6000 and ETERNUS3000 Disk Arrays
Remote Copy Technology of ETERNUS6000 and ETERNUS3000 Disk Arrays V Tsutomu Akasaka (Manuscript received July 5, 2005) This paper gives an overview of a storage-system remote copy function and the implementation
