31
1 Silberschatz, Galvin and Gagne 2002 13. 1 Operating System Concepts Chapter 14: Mass-Storage Systems n Disk Structure n Disk Scheduling n Disk Management n Swap-Space Management n RAID Structure n Disk Attachment n Stable-Storage Implementation n Tertiary Storage Devices n Operating System Issues n Performance Issues

Chapter 14: Mass -Storage Systems - Kent State Universityfarrell/osf03/lectures/ch14-1up.pdf · 14 Operating System Concepts 13.14 Silberschatz, Galvin and Gagne 2002 Selecting a

  • Upload
    others

  • View
    10

  • Download
    0

Embed Size (px)

Citation preview

1

Silberschatz, Galvin and Gagne 200213.1Operating System Concepts

Chapter 14: Mass-Storage Systems

n Disk Structuren Disk Schedulingn Disk Managementn Swap-Space Management

n RAID Structuren Disk Attachmentn Stable-Storage Implementationn Tertiary Storage Devicesn Operating System Issuesn Performance Issues

2

Silberschatz, Galvin and Gagne 200213.2Operating System Concepts

Disk Structure

n Disk drives are addressed as large 1-dimensional arrays of logical blocks, where the logical block is the smallest unit of transfer.

n The 1-dimensional array of logical blocks is mapped into the sectors of the disk sequentially.F Sector 0 is the first sector of the first track on the outermost

cylinder.F Mapping proceeds in order through that track, then the rest

of the tracks in that cylinder, and then through the rest of thecylinders from outermost to innermost.

3

Silberschatz, Galvin and Gagne 200213.3Operating System Concepts

Disk Scheduling

n The operating system is responsible for using hardware efficiently — for the disk drives, this means having a fast access time and disk bandwidth.

n Access time has two major componentsF Seek time is the time for the disk are to move the heads to

the cylinder containing the desired sector.F Rotational latency is the additional time waiting for the disk

to rotate the desired sector to the disk head.

n Minimize seek timen Seek time ≈ seek distancen 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.

4

Silberschatz, Galvin and Gagne 200213.4Operating System Concepts

Disk Scheduling (Cont.)

n Several algorithms exist to schedule the servicing of disk I/O requests.

n We illustrate them with a request queue (0-199).

98, 183, 37, 122, 14, 124, 65, 67

Head pointer 53

5

Silberschatz, Galvin and Gagne 200213.5Operating System Concepts

FCFS

Illustration shows total head movement of 640 cylinders.

6

Silberschatz, Galvin and Gagne 200213.6Operating System Concepts

SSTF

n Selects the request with the minimum seek time from the current head position.

n SSTF scheduling is a form of SJF scheduling; may cause starvation of some requests.

n Illustration shows total head movement of 236 cylinders.

7

Silberschatz, Galvin and Gagne 200213.7Operating System Concepts

SSTF (Cont.)

8

Silberschatz, Galvin and Gagne 200213.8Operating System Concepts

SCAN

n 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.

n Sometimes called the elevator algorithm.n Illustration shows total head movement of 208 cylinders.

9

Silberschatz, Galvin and Gagne 200213.9Operating System Concepts

SCAN (Cont.)

10

Silberschatz, Galvin and Gagne 200213.10Operating System Concepts

C-SCAN

n Provides a more uniform wait time than SCAN.n 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.

n Treats the cylinders as a circular list that wraps around from the last cylinder to the first one.

11

Silberschatz, Galvin and Gagne 200213.11Operating System Concepts

C-SCAN (Cont.)

12

Silberschatz, Galvin and Gagne 200213.12Operating System Concepts

C-LOOK

n Version of C-SCANn 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.

13

Silberschatz, Galvin and Gagne 200213.13Operating System Concepts

C-LOOK (Cont.)

14

Silberschatz, Galvin and Gagne 200213.14Operating System Concepts

Selecting a Disk-Scheduling Algorithm

n SSTF is common and has a natural appealn SCAN and C-SCAN perform better for systems that place

a heavy load on the disk.n Performance depends on the number and types of

requests.n Requests for disk service can be influenced by the file-

allocation method.n 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.

n Either SSTF or LOOK is a reasonable choice for the default algorithm.

15

Silberschatz, Galvin and Gagne 200213.15Operating System Concepts

Disk Management

n Low-level formatting, or physical formatting — Dividing a disk into sectors that the disk controller can read and write.

n To use a disk to hold files, the operating system still needs to record its own data structures on the disk.F Partition the disk into one or more groups of cylinders.F Logical formatting or “making a file system”.

n Boot block initializes system.F The bootstrap is stored in ROM.F Bootstrap loader program.

n Methods such as sector sparing used to handle bad blocks.

16

Silberschatz, Galvin and Gagne 200213.16Operating System Concepts

MS-DOS Disk Layout

17

Silberschatz, Galvin and Gagne 200213.17Operating System Concepts

Swap-Space Management

n Swap-space — Virtual memory uses disk space as an extension of main memory.

n Swap-space can be carved out of the normal file system,or, more commonly, it can be in a separate disk partition.

n Swap-space managementF 4.3BSD allocates swap space when process starts; holds

text segment (the program) and data segment.F Kernel uses swap maps to track swap-space use.F Solaris 2 allocates swap space only when a page is forced

out of physical memory, not when the virtual memory page is first created.

18

Silberschatz, Galvin and Gagne 200213.18Operating System Concepts

4.3 BSD Text-Segment Swap Map

19

Silberschatz, Galvin and Gagne 200213.19Operating System Concepts

4.3 BSD Data-Segment Swap Map

20

Silberschatz, Galvin and Gagne 200213.20Operating System Concepts

RAID Structure

n RAID – multiple disk drives provides reliability via redundancy.

n RAID is arranged into six different levels.

21

Silberschatz, Galvin and Gagne 200213.21Operating System Concepts

RAID (cont)

n Several improvements in disk-use techniques involve the use of multiple disks working cooperatively.

n Disk striping uses a group of disks as one storage unit.

n RAID schemes improve performance and improve the reliability of the storage system by storing redundant data.F Mirroring or shadowing keeps duplicate of each disk.F Block interleaved parity uses much less redundancy.

22

Silberschatz, Galvin and Gagne 200213.22Operating System Concepts

RAID Levels

23

Silberschatz, Galvin and Gagne 200213.23Operating System Concepts

RAID (0 + 1) and (1 + 0)

24

Silberschatz, Galvin and Gagne 200213.24Operating System Concepts

Disk Attachment

n Disks may be attached one of two ways:

1. Host attached via an I/O port

2. Network attached via a network connection

25

Silberschatz, Galvin and Gagne 200213.25Operating System Concepts

Network-Attached Storage

26

Silberschatz, Galvin and Gagne 200213.26Operating System Concepts

Storage-Area Network

27

Silberschatz, Galvin and Gagne 200213.40Operating System Concepts

Reliability

n A fixed disk drive is likely to be more reliable than a removable disk or tape drive.

n An optical cartridge is likely to be more reliable than a magnetic disk or tape.

n A head crash in a fixed hard disk generally destroys the data, whereas the failure of a tape drive or optical disk drive often leaves the data cartridge unharmed.

28

Silberschatz, Galvin and Gagne 200213.41Operating System Concepts

Cost

n Main memory is much more expensive than disk storage

n The cost per megabyte of hard disk storage is competitive with magnetic tape if only one tape is used per drive.

n The cheapest tape drives and the cheapest disk drives have had about the same storage capacity over the years.

n Tertiary storage gives a cost savings only when the number of cartridges is considerably larger than the number of drives.

29

Silberschatz, Galvin and Gagne 200213.42Operating System Concepts

Price per Megabyte of DRAM, From 1981 to 2000

30

Silberschatz, Galvin and Gagne 200213.43Operating System Concepts

Price per Megabyte of Magnetic Hard Disk, From 1981 to 2000

31

Silberschatz, Galvin and Gagne 200213.44Operating System Concepts

Price per Megabyte of a Tape Drive, From 1984-2000