Exam 2 short answer concepts Flashcards
Seek time
The time it takes the read/write head to reach the desired cylinder. This has nothing to do with disk rotation, but rather with the arm moving in/out. This number would be given.
How are RPM and latency related.
Increasing RPM = decreasing latency. Disk moves faster so it takes less time to find the desired location.
Access latency(aka average access time) = ?
Average seek time + average latency.
Rotational latency.
Time it takes the read/write head to reach the desired sector on a track. This is how fast the disk rotates under the head.
Access time = ?
Seek time + rotational latency.
Average latency = ?
First you find latency. You divide RPM/60. This gives you the fraction of a second it takes rotate once (in milliseconds). Then you divide this number by 2 to find the average latency.
Average I/O time.
Average access time + (amount to transfer/transfer rate) + controller overhead
RAID 0
Non-redundant striping. Increases chance for data loss. Data is spread across 2 separate disks. Used when speed matters, since it allows faster access to data.
RAID 1
Mirroring. Data copied on a second disk.
RAID 5
Striping with parity. Most common. Requires as least 3 disks. Data spread across many disks, and each disk uses parity information to rebuild the data if a disk fails. Downside - reduces total amount of data that can be stored since an entire disk worth of data is used for parity. Example, 4 1GB disks are used, but one whole disk is used for parity so there’s only 3GB available to store info.