Disks CS 416: Operating Systems Design, Spring 2001 Department of Computer Science Rutgers University

Slides:



Advertisements
Similar presentations
Silberschatz, Galvin and Gagne Operating System Concepts Disk Scheduling Disk IO requests are for blocks, by number Block requests come in an.
Advertisements

Disks Disk Hardware (1) Disk parameters for the original IBM PC floppy disk and a Western Digital WD hard disk.
I/O Management and Disk Scheduling Chapter 11. I/O Driver OS module which controls an I/O device hides the device specifics from the above layers in the.
I/O Management and Disk Scheduling
Faculty of Information Technology Department of Computer Science Computer Organization Chapter 7 External Memory Mohammad Sharaf.
RAID Redundant Array of Independent Disks
CS 6560: Operating Systems Design
Disk Scheduling Based on the slides supporting the text 1.
Operating Systems 1 K. Salah Module 5.0: I/O and Disks I/O hardware Polling and Interrupt-driven I/O DMA Bock and character devices Blocking and nonblocking.
1 File Systems Chapter Files 6.2 Directories 6.3 File system implementation 6.4 Example file systems.
Chapter 12: Mass-Storage Structures
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Chapter 12: Mass-Storage Systems.
Mass-Storage Structure
Based on the slides supporting the text
Disks.
1 Disk Scheduling Chapter 14 Based on the slides supporting the text.
Secondary Storage CSCI 444/544 Operating Systems Fall 2008.
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Mass-Storage Systems Revised Tao Yang.
Moving-head Disk Mechanism Rotation Speeds: 60 to 200 rotations per second Head Crash: read-write head makes contact with the surface.
12.1 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts with Java – 8 th Edition Chapter 12: Mass-Storage Systems.
Disk and I/O Management
CS 346 – Chapter 10 Mass storage –Advantages? –Disk features –Disk scheduling –Disk formatting –Managing swap space –RAID.
1 Recitation 8 Disk & File System. 2 Disk Scheduling Disks are at least four orders of magnitude slower than main memory –The performance of disk I/O.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 14: Mass-Storage Systems Disk Structure Disk Scheduling Disk Management Swap-Space.
Mass storage Structure Unit 5 (Chapter 14). Disk Structures Magnetic disks are faster than tapes. Disk drives are addressed as large one- dimensional.
Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9 th Edition Chapter 10: Mass-Storage Systems.
1 Lecture 8: Secondary-Storage Structure 2 Disk Architecture Cylinder Track SectorDisk head rpm.
Mass-Storage Systems. Objectives  physical structure of secondary and tertiary storage devices  performance characteristics of mass-storage devices.
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Chapter 12: Mass-Storage Systems.
Silberschatz and Galvin  Operating System Concepts Module 13: Secondary-Storage Disk Structure Disk Scheduling Disk Management Swap-Space Management.
Disk Structure Disk drives are addressed as large one- dimensional arrays of logical blocks, where the logical block is the smallest unit of transfer.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 13+14: I/O Systems and Mass- Storage Structure I/O Hardware Application I/O.
Chapter 12: Mass-Storage Systems Silberschatz, Galvin and Gagne ©2005 Operating System Concepts Chapter 12: Mass-Storage Systems Overview of Mass.
Page 110/12/2015 CSE 30341: Operating Systems Principles Network-Attached Storage  Network-attached storage (NAS) is storage made available over a network.
Chapter 12: Mass-Storage Systems Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 1, 2005 Chapter 12: Mass-Storage.
1Fall 2008, Chapter 12 Disk Hardware Arm can move in and out Read / write head can access a ring of data as the disk rotates Disk consists of one or more.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 14: Mass-Storage Systems Disk Structure Disk Scheduling Disk Management Swap-Space.
CS 6502 Operating Systems Dr. J.. Garrido Device Management (Lecture 7b) CS5002 Operating Systems Dr. Jose M. Garrido.
CE Operating Systems Lecture 20 Disk I/O. Overview of lecture In this lecture we will look at: Disk Structure Disk Scheduling Disk Management Swap-Space.
I/O Management and Disk Structure Introduction to Operating Systems: Module 14.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 14: Mass-Storage Systems Disk Structure Disk Scheduling Disk Management Swap-Space.
8.1 CSE Department MAITSandeep Tayal 8: Secondary-Storage Disk Structure Disk Scheduling Disk Management Swap-Space Management Disk Reliability Stable-Storage.
1.  Disk Structure Disk Structure  Disk Scheduling Disk Scheduling  FCFS FCFS  SSTF SSTF  SCAN SCAN  C-SCAN C-SCAN  C-LOOK C-LOOK  Selecting a.
Silberschatz, Galvin, and Gagne  Applied Operating System Concepts Module 13: Secondary-Storage Disk Structure Disk Scheduling Disk Management.
1 CS.217 Operating System By Ajarn..Sutapart Sappajak,METC,MSIT Chapter 13 Mass-Storage Systems Slide 1 Chapter 13 Mass-Storage Systems.
Chapter 14: Mass-Storage
Chapter 14: Mass-Storage Systems Disk Structure. Disk Scheduling. RAID.
Disk Scheduling The operating system is responsible for using hardware efficiently — for the disk drives, this means having a fast access time and disk.
1 Chapter 13 Mass-Storage Structure. 2 Disk Structure Disk drives are addressed as large 1- dimensional arrays of logical blocks, where the logical block.
M ASS S TORAGE S TRUCTURES Lecture: Operating System Concepts Lecturer: Pooja Sharma Computer Science Department, Punjabi University, Patiala.
Part IV I/O System Chapter 12: Mass Storage Structure.
Silberschatz, Galvin and Gagne ©2013 Operating System Concepts Essentials – 2 nd Edition Chapter 9: Mass-Storage Systems.
Magnetic Disks Have cylinders, sectors platters, tracks, heads virtual and real disk blocks (x cylinders, y heads, z sectors per track) Relatively slow,
Operating System Concepts with Java – 7 th Edition, Nov 15, 2006 Silberschatz, Galvin and Gagne ©2007 Chapter 11: File System Implementation.
Chapter 10: Mass-Storage Systems
Operating System (013022) Dr. H. Iwidat
Multiple Platters.
Operating Systems Disk Scheduling A. Frank - P. Weisberg.
Chapter 12: Mass-Storage Structure
Operating System I/O System Monday, August 11, 2008.
Mass-Storage Structure
DISK SCHEDULING FCFS SSTF SCAN/ELEVATOR C-SCAN C-LOOK.
Chapter 14 Based on the slides supporting the text
Chapter 12: Mass-Storage Systems
Moving-head Disk Machanism
Disk Scheduling The operating system is responsible for using hardware efficiently — for the disk drives, this means having a fast access time and disk.
Overview Continuation from Monday (File system implementation)
Mass-Storage Systems.
Disk Scheduling The operating system is responsible for using hardware efficiently — for the disk drives, this means having a fast access time and disk.
Operating Systems Disk Scheduling A. Frank - P. Weisberg.
Presentation transcript:

Disks CS 416: Operating Systems Design, Spring 2001 Department of Computer Science Rutgers University

2 Rutgers UniversityCS 416: Operating Systems File System: Abstraction for Secondary Storage CPUMemory Bridge Disk NIC Memory Bus (System Bus) I/O Bus

3 Rutgers UniversityCS 416: Operating Systems Storage-Device Hierarchy

4 Rutgers UniversityCS 416: Operating Systems Secondary Storage Secondary storage typically: Is storage outside of memory Does not permit direct execution of instructions or data retrieval via load/store instructions Characteristics: It’s large: GB It’s cheap: 40 GB IDE disks on order of $150-$200 It’s persistent: data is maintained across process execution and power down (or loss) It’s slow: milliseconds to access

5 Rutgers UniversityCS 416: Operating Systems Disks Seek time: time to move the disk head to the desired track Rotational delay: time to reach desired sector once head is over the desired track Transfer rate: rate data read/write to disk Some typical parameters: Seek: ~8-10ms Rotational delay: ~4.15ms for 7200 rpm Transfer rate: Sectors Tracks

6 Rutgers UniversityCS 416: Operating Systems Disk Scheduling Disks are at least four orders of magnitude slower than the main memory The performance of disk I/O is vital for the performance of the computer system as a whole Access time (seek time+ rotational delay) >> transfer time for a sector Therefore the order in which sectors are read matters a lot Disk scheduling Usually based on the position of the requested sector rather than according to the process priority Possibly reorder stream of read/write request to improve performance

7 Rutgers UniversityCS 416: Operating Systems Disk Scheduling (Cont.) Several algorithms exist to schedule the servicing of disk I/O requests. We illustrate them with a request queue (0-199). 98, 183, 37, 122, 14, 124, 65, 67 Head pointer 53

8 Rutgers UniversityCS 416: Operating Systems FCFS Illustration shows total head movement of 640 cylinders.

9 Rutgers UniversityCS 416: Operating Systems SSTF Selects the request with the minimum seek time from the current head position. SSTF scheduling is a form of SJF scheduling; may cause starvation of some requests. Illustration shows total head movement of 236 cylinders.

10 Rutgers UniversityCS 416: Operating Systems SSTF (Cont.)

11 Rutgers UniversityCS 416: Operating Systems SCAN The disk arm starts at one end of the disk, and moves toward the other end, servicing requests until it gets to the other end of the disk, where the head movement is reversed and servicing continues. Sometimes called the elevator algorithm. Illustration shows total head movement of 208 cylinders.

12 Rutgers UniversityCS 416: Operating Systems SCAN (Cont.)

13 Rutgers UniversityCS 416: Operating Systems C-SCAN Provides a more uniform wait time than SCAN. The head moves from one end of the disk to the other. servicing requests as it goes. When it reaches the other end, however, it immediately returns to the beginning of the disk, without servicing any requests on the return trip. Treats the cylinders as a circular list that wraps around from the last cylinder to the first one.

14 Rutgers UniversityCS 416: Operating Systems C-SCAN (Cont.)

15 Rutgers UniversityCS 416: Operating Systems C-LOOK Version of C-SCAN Arm only goes as far as the last request in each direction, then reverses direction immediately, without first going all the way to the end of the disk.

16 Rutgers UniversityCS 416: Operating Systems C-LOOK (Cont.)

17 Rutgers UniversityCS 416: Operating Systems Selecting a Disk-Scheduling Algorithm SSTF is common and has a natural appeal SCAN and C-SCAN perform better for systems that place a heavy load on the disk. Performance depends on the number and types of requests. Requests for disk service can be influenced by the file-allocation method. The disk-scheduling algorithm should be written as a separate module of the operating system, allowing it to be replaced with a different algorithm if necessary. Either SSTF or LOOK is a reasonable choice for the default algorithm.

18 Rutgers UniversityCS 416: Operating Systems Disk Management Low-level formatting, or physical formatting — Dividing a disk into sectors that the disk controller can read and write. To use a disk to hold files, the operating system still needs to record its own data structures on the disk. Partition the disk into one or more groups of cylinders. Logical formatting or “making a file system”. Boot block initializes system. The bootstrap is stored in ROM. Bootstrap loader program. Methods such as sector sparing used to handle bad blocks.

19 Rutgers UniversityCS 416: Operating Systems Swap-Space Management Swap-space — Virtual memory uses disk space as an extension of main memory. Swap-space can be carved out of the normal file system,or, more commonly, it can be in a separate disk partition. Swap-space management 4.3BSD allocates swap space when process starts; holds text segment (the program) and data segment. Kernel uses swap maps to track swap-space use. Solaris 2 allocates swap space only when a page is forced out of physical memory, not when the virtual memory page is first created.

20 Rutgers UniversityCS 416: Operating Systems Disk Reliability Several improvements in disk-use techniques involve the use of multiple disks working cooperatively. RAID is one important technique currently in common use.

21 Rutgers UniversityCS 416: Operating Systems RAID Redundant Array of Inexpensive Disks (RAID) A set of physical disk drives viewed by the OS as a single logical drive Replace large-capacity disks with multiple smaller-capacity drives to improve the I/O performance (at lower price) Data are distributed across physical drives in a way that enables simultaneous access to data from multiple drives Redundant disk capacity is used to compensate for the increase in the probability of failure due to multiple drives Improve availability because no single point of failure Six levels of RAID representing different design alternatives

22 Rutgers UniversityCS 416: Operating Systems RAID Level 0 Does not include redundancy Data is stripped across the available disks Total storage space across all disks are divided into strips Strips are mapped round-robin to consecutive disks A set of consecutive strips that map exactly one strip to each disk in the array is called a stripe Can you see how this improves the disk I/O bandwidth? What access pattern gives the best performance? strip 0 strip 3 strip 2 strip 1 strip 7strip 6strip 5strip 4... stripe 0

23 Rutgers UniversityCS 416: Operating Systems RAID Level 1 Redundancy achieved by duplicating all the data Every disk has a mirror disk that stores exactly the same data A read can be serviced by either of the two disks which contains the requested data (improved performance over RAID 0 if reads dominate) A write request must be done on both disks but can be done in parallel Recovery is simple but cost is high strip 0 strip 1 strip 0 strip 1 strip 3 strip 2 strip 3strip 2...

24 Rutgers UniversityCS 416: Operating Systems RAID Levels 2 and 3 Parallel access: all disks participate in every I/O request Small strips since size of each read/write = # of disks * strip size RAID 2: error correcting code is calculated across corresponding bits on each data disk and stored on log(# data disks) parity disks Hamming code: can correct single-bit errors and detect double-bit errors Less expensive than RAID 1 but still pretty high overhead – not really needed in most reasonable environments RAID 3: a single redundant disk that keeps parity bits P(i) = X2(i)  X1(i)  X0(i) In the event of a failure, data can be reconstructed Can only tolerate a single failure at a time b0 b1 b2P(b) X2(i) = P(i)  X1(i)  X0(i)

25 Rutgers UniversityCS 416: Operating Systems RAID Levels 4 and 5 RAID 4 Large strips with a parity strip like RAID 3 Independent access - each disk operates independently, so multiple I/O request can be satisfied in parallel Independent access  small write = 2 reads + 2 writes Example: if write performed only on strip 0: P’(i) = X2(i)  X1(i)  X0’1(i) = X2(i)  X1(i)  X0’(i)  X0(i)  X0(i) = P(i)  X0’(i)  X0(i) Parity disk can become bottleneck RAID 5 Like RAID 4 but parity strips are distributed across all disks strip 0 P(0-2) strip 2 strip 1 P(3-5)strip 5strip 4strip 3