| < Day Day Up > |
Key Points
|
| < Day Day Up > |
| < Day Day Up > |
Chapter 2. An Overview of Storage TechnologyIn This Chapter:
Data protection is closely linked to storage architecture and technology. The
Storage technology is implemented at the device and management layer (Figure 2-0). The primary focus is on the devices that make up the storage infrastructure, as well as the software that
Figure 2-0. Storage technology operating at the device and management layer
This chapter will provide a brief overview of modern data storage technology and architecture. It is by no means
|
| < Day Day Up > |
| < Day Day Up > |
A Quick History of Data Storage
Data storage used to come in only one type: Direct Attach Storage (DAS). It wasn't called that at the time. Storage was simply storage. The primary storage media were magnetic tape for backup and archive, floppy
In the early 1980s, the first small hard disk drives were developed and became ubiquitous. The hard drive as we know it grew
The
The landscape changed dramatically in the late 1990s. Products built around the concept of network storage were developed. This changed the way storage architectures were designed. Although it was often argued that Network Attached Storage was just a better form of file server, Storage Area Networks (SANs) were entirely different. With the SAN architecture, disks or RAID groups could be accessed directly, at the block level, from remote machines without the intervention of a network operating system. Raw access to a disk or tape could now be performed over a network. This allowed for distributed storage architectures that could support fast applications, such as relational databases and tape backup.
SANs also led to better utilization of storage resources. By sharing resources, the problem of
The Roles of Different Storage DevicesThe purpose of a data storage system is to provide persistent or nonvolatile storage for data. It does not need to be as fast as random access memory, but when the power is turned off, the data has to continue to exist. Without persistent data storage devices, computing devices would need to have an uninterrupted power source, or else data stored on them would be lost. A variety of devices act as persistent data stores, each with its own specific role. Table 2-1 shows a partial list of these devices. Table 2-1. Storage Media (Early 2005)
Hard disks are fast devices with high storage capacity. Magnetic tape has the advantage of also offering high-capacity data storage, though it is slower than hard drives. Tape is still the media of choice for
Magneto-optical disks, which combine the properties of magnetic and laser-based disks, have high capacity but are expensive and slow. They are sometimes used for long-term archive of large files.
Solid state, nonvolatile storage is a
Arrays, Libraries, and Jukeboxes
Hard drives dominate as primary storage, as tape does for backup. These technologies are supplemented by CD-ROM/RW and DVD-ROM/RW for archive and software distribution. Often, storage devices are aggregated into arrays, libraries, or jukeboxes of drives and media. They are the basic building blocks of the massive storage systems
Arrays
are large collections of hard drives tied together into a logical whole. A device called a
controller
provides the interface to the computer or network and
There are advantages to aggregating drives into arrays. An array allows for larger disk space than is possible with a single drive. When multiple small disks are combined into a single, large storage device, very large files and databases can be stored on a single logical drive. Hard drives also have performance limitations. By streaming data to multiple drives simultaneously, storage systems can read and write data much more quickly than if only one massive drive were present. From a data protection point of view, having data parceled out to many drives is a major advantage. Disk failure won't destroy all the data stored in the array unit. In fact, all data may be recoverable even in the event of single drive failure if copies are made to other disks.
{% if main.adsdop %}{% include 'adsenceinline.tpl' %}{% endif %}
Tape libraries and CD-ROM/RW jukeboxes are better suited to managing multiple access to the individual tape and optical media. Because tapes, CDs, and DVDs are removable, manually placing and changing tapes and CD-ROMs is unproductive, as well as an opportunity for human and computer error. The sophisticated
As with disk arrays, libraries and jukeboxes often have the advantage of having more than one drive. If one tape or CD-ROM/RW drive fails, the others in the library or jukebox can still be used. At least some servers will be
|
| < Day Day Up > |