Term
|
Definition
| A secondary storage device that has spinning platters and a movable arm assembly. Organized as cylinders, tracks, and sectors. |
|
|
Term
|
Definition
| A single disk in the magnetic disk. |
|
|
Term
|
Definition
| Moves forward and backward to read information from a platter. |
|
|
Term
|
Definition
| The surface of a platter is logically divided into circular tracks, which are then divided into sectors. |
|
|
Term
|
Definition
| The set of tracks that are at one arm position. |
|
|
Term
|
Definition
|
|
Term
|
Definition
| The speed at which data is transferred between the drive and the computer. |
|
|
Term
|
Definition
| The time it takes to move the arm to the desired cylinder. |
|
|
Term
|
Definition
| The time for the desired sector to rotate to the disk head. |
|
|
Term
|
Definition
| Carries out commands from the host controller to read or write data from or to the disk. |
|
|
Term
|
Definition
| Sometimes used for backups, due to large size but slow access time. |
|
|
Term
|
Definition
| Smallest unit of transfer. Modern disk drives are addressed as large one-dimensional arrays of these. |
|
|
Term
|
Definition
| Locally attached storage. |
|
|
Term
|
Definition
| Storage attached through a network. |
|
|
Term
|
Definition
| A private network made using storage protocols rather than networking protocols that connects servers and storage units. Very flexible. |
|
|
Term
|
Definition
| Scheduling how requests for a disk are completed. |
|
|
Term
|
Definition
| The requests are serviced in the order they arrive in. |
|
|
Term
|
Definition
| The shortest seek time of all requests is done first. Not possible since it requires knowledge of future. Also not optimal. |
|
|
Term
|
Definition
| Starts at one end of the disk and moves to the other end, servicing requests along the way, then doing it again on the way back. |
|
|
Term
|
Definition
| Like SCAN scheduling but on its way back it ignores all requests to prevent preferential treatment toward the middle of the disk. |
|
|
Term
|
Definition
| Like scan but doesn't go all the way to the end, just goes to the last request in that direction. |
|
|
Term
|
Definition
| Look scheduling plus circular behavior. |
|
|
Term
|
Definition
| Changing the logical block size. |
|
|
Term
|
Definition
| When the disk undergoes low-level formatting some of the sectors are made not visible to the operating system. These are used to the replace any bad blocks found. |
|
|
Term
|
Definition
| When a bad block is found, data is transferred to an adjacent free block and then data is transferred to the now free block. This is repeated until all the blocks from the bad block to the replacement block have been shifted and then the bad block is mapped to the next free block which is now right next to it. Prevents bad blocks from reducing the effectiveness of disk scheduling algorithms. |
|
|
Term
|
Definition
| Redundant array of independent disks. Having many disks operate in parallel to increase reliability and speed. |
|
|
Term
|
Definition
| How long it takes on average for a disk to fail. |
|
|
Term
|
Definition
| How long it takes for data loss to occur. |
|
|
Term
|
Definition
| Storing the same data in multiple places. |
|
|
Term
|
Definition
| Duplicating disks to improve reliability. Very simple but also expensive. |
|
|
Term
|
Definition
| Improving disk performance by splitting data across multiple disks. |
|
|
Term
|
Definition
| The bits of each byte are split across multiple drives. |
|
|
Term
|
Definition
| The data is stripped by block. |
|
|
Term
|
Definition
| A disk not used for data but is configured to be used as a replacement should any other disk fail. Used to automate disk replacement. |
|
|