Module 6 Ppt Flashcards
What are the two main categories of storage based on volatility?
Volatile storage and non-volatile storage
Volatile storage loses contents when power is switched off, while non-volatile storage retains contents.
What is primary storage?
Fastest media but volatile (e.g., cache, main memory)
Primary storage is essential for quick access to data currently in use.
What is secondary storage?
Next level in hierarchy, non-volatile, moderately fast access time (e.g., flash memory, magnetic disks)
Also referred to as online storage.
What is tertiary storage?
Lowest level in hierarchy, non-volatile, slow access time (e.g., magnetic tape, optical storage)
Often referred to as offline storage.
What is the function of the read-write head in magnetic disks?
Reads or writes magnetically encoded information
Positioned very close to the platter surface.
What is a sector in the context of magnetic disks?
The smallest unit of data that can be read or written, typically 512 bytes
Each track on a platter is divided into sectors.
What does the disk controller do?
Interfaces between the computer system and the disk drive hardware
It accepts commands to read/write sectors and remaps bad sectors.
What is RAID?
Redundant Arrays of Independent Disks
A disk organization technique that manages multiple disks to provide high capacity and reliability.
What is the purpose of redundancy in RAID systems?
To store extra information that can be used to rebuild information lost in a disk failure
Techniques like mirroring help prevent data loss.
What is RAID Level 1?
Mirrored disks with block striping
Offers best write performance and is popular for applications like log files.
What is the main characteristic of RAID Level 0?
Block striping; non-redundant
Used in high-performance applications where data loss is not critical.
What is the difference between bit-level striping and block-level striping?
Bit-level striping splits bits of each byte across multiple disks; block-level striping assigns whole blocks to different disks
Block-level striping is more efficient for I/O operations.
What is the main benefit of RAID Level 5?
Block-Interleaved Distributed Parity; partitions data and parity among all disks
Provides higher I/O rates and avoids the bottleneck of a single parity disk.
What is the P+Q Redundancy scheme in RAID Level 6?
Stores extra redundant information to guard against multiple disk failures
Offers better reliability than Level 5 at a higher cost.
What factors should be considered when choosing a RAID level?
- Monetary cost
- Performance
- Performance during failure
- Performance during rebuild
Each RAID level has different implications for these factors.