chapter 14 mass storage systems
play

Chapter 14: Mass-Storage Systems CMSC 421 Section 0202 Disk - PDF document

Chapter 14: Mass-Storage Systems CMSC 421 Section 0202 Disk Structure Disk Scheduling Disk Management Swap-Space Management RAID Structure Disk Attachment Stable-Storage Implementation I/O Systems Tertiary Storage


  1. Chapter 14: Mass-Storage Systems CMSC 421 Section 0202 � Disk Structure � Disk Scheduling � Disk Management � Swap-Space Management � RAID Structure � Disk Attachment � Stable-Storage Implementation I/O Systems � Tertiary Storage Devices Chapter 14: Mass-Storage Structure � Operating System Issues � Performance Issues Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.2 Disk Structure Disk Structure � Disk drives are addressed as large 1-dimensional arrays � Data rate must be uniform of logical blocks , where the logical block is the smallest � Two techniques to keep data rate uniform unit of data transfer. � Constant Linear Velocity � The 1-dimensional array of logical blocks is mapped into � Density of bits per track is uniform through out a platter the sectors of the disk sequentially. � Disk rotation speed increases as the head moves from � Sector 0 is the first sector of the first track on the outermost outer tracks to inner tracks cylinder. � Constant Angular Velocity � Mapping proceeds in order through that track, then the rest of the tracks in that cylinder, and then through the rest of the � Density of bits per track decreases from inner tracks to cylinders from outermost to innermost. outer tracks � Mapping gets complicated due to bad sectors, and the fact � Disk rotation speed remains the same that #sectors/track is not always constant; try to maintain constant data rate � Constant Linear Velocity and Constant Angular Velocity Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.3 Operating System Concepts 14.4

  2. Disk Scheduling Disk Scheduling (Cont.) � The operating system is responsible for using hardware � Several algorithms exist to schedule the servicing of disk efficiently — for the disk drives, this means having a fast I/O requests. access time and disk bandwidth. � We illustrate them with a request queue (0-199) � Access time has two major components representing track numbers. � Seek time is the time for the disk are to move the heads to the cylinder containing the desired sector. 98, 183, 37, 122, 14, 124, 65, 67 � Rotational latency is the additional time waiting for the disk to rotate the desired sector to the disk head. Head pointer 53 � Minimize seek time � Seek time ≈ seek distance � Disk bandwidth is the total number of bytes transferred, divided by the total time between the first request for service and the completion of the last transfer. Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.5 Operating System Concepts 14.6 FCFS SSTF Illustration shows total head movement of 640 cylinders. � 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. � SSTF is not optimal with respect to #cylinders the head moves Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.7 Operating System Concepts 14.8

  3. SSTF (Cont.) 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. Total head movement of 236 cylinders. Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.9 Operating System Concepts 14.10 SCAN (Cont.) 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. Total head movement of 208 cylinders. Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.11 Operating System Concepts 14.12

  4. C-SCAN (Cont.) LOOK and C-LOOK � Arm only goes as far as the last request in each direction instead of till the last cylinder � LOOK and C-LOOK are obtained from SCAN and C- SCAN by using this idea Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.13 Operating System Concepts 14.14 C-LOOK (Cont.) 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. Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.15 Operating System Concepts 14.16

  5. Disk Management Bad Blocks � Low-level formatting , or physical formatting — Dividing a � Methods such as spare sectors and sector slipping can be used to handle bad blocks disk into sectors that the disk controller can read and � Spare Sectors write. � Reserve some sectors beforehand to act as “spare” to � Each sector consists of a header, data area and a trailer replace a bad block � Trailer contains error correcting information – Could invalidate optimization by disk scheduling � To use a disk to hold files, the operating system still algorithms needs to record its own data structures on the disk. � Sector slipping � Suppose sector 17 is bad � Partition the disk into one or more groups of cylinders. � Find a free spare sector (suppose sector 203) � Logical formatting or “making a file system”. � Remap all sectors (from 18 to 202) moving them up � Boot block initializes system. by/down by one slot � The bootstrap is stored in ROM. � Map data of sector 17 to 18 � Bootstrap loader program in a particular part of the disk Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.17 Operating System Concepts 14.18 MS-DOS Disk Layout 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. � Called “raw partition”- no file system � 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. Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.19 Operating System Concepts 14.20

  6. 4.3 BSD Text-Segment Swap Map 4.3 BSD Data-Segment Swap Map Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.21 Operating System Concepts 14.22 RAID RAID (cont) � Several improvements in disk-use techniques involve the � RAID: use of multiple disks working cooperatively. � Redundant Array of Inexpensive Disks � Disk striping uses a group of disks as one storage unit. � Redundant Array of Independent Disks (later) � One byte is spread across n disks � RAID – multiple disk drives provides reliability via � Byte level disk stripping redundancy . � Block level disk stripping � Also improve data access speed by data stripping � RAID schemes improve the performance and the � RAID is arranged into six different levels. reliability of the storage system by storing redundant data. � Mirroring or shadowing keeps duplicate of each disk. � Bit interleaved parity � Parity bit(s) with every byte stored in a separate parity disk � Block interleaved parity Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.23 Operating System Concepts 14.24

  7. RAID Levels RAID (0 + 1) and (1 + 0) Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.25 Operating System Concepts 14.26 RAID (0+1) and (1+0) Disk Attachment � RAID 0 offers performance (access speed) Disks may be attached one of two ways: � � RAID 1 offers reliability (mirroring) � RAID (0+1) =>disk is stripped and the strips are mirrored 1. Host attached via an I/O port 2. Network attached via a network connection � If a disk fails, entire strip is unavailable � RAID (1+0) => Disks are mirrored in pairs and then stripping done across the paired disks � If a disk fails, the mirror disk can provide a copy of the strip Silberschatz, Galvin and Gagne  2002 Silberschatz, Galvin and Gagne  2002 Operating System Concepts 14.27 Operating System Concepts 14.28

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend