You are on page 1of 46

+ Chapter 6

External Memory
+
Magnetic Disk
 A disk is a circular platter constructed of nonmagnetic material,
called the substrate, coated with a magnetizable material
 Traditionally the substrate has been an aluminium or aluminium alloy
material
 Recently glass substrates have been introduced

 Benefits of the glass substrate:


 Improvement in the uniformity of the magnetic film surface to increase
disk reliability
 A significant reduction in overall surface defects to help reduce read-write
errors
 Ability to support lower fly heights
 Better stiffness to reduce disk dynamics
 Greater ability to withstand shock and damage
Magnetic Read Data are recorded on and later retrieved
from the disk via a conducting coil

and Write named the head


•• In
In many
many systems
systems there
and a write head
there are
are two
two heads,
heads, aa read
read head
head

Mechanisms • During
During aa read
stationary
read or
or write
stationary while
write operation
while the
operation the
the platter
platter rotates
the head
head is
rotates beneath
is
beneath it
it

Electric pulses are sent to the write head


and the resulting magnetic patterns are
recorded on the surface below, with The write mechanism exploits the
different patterns for positive and negative fact that electricity flowing
currents through a coil produces a

+ magnetic field

An electric current in the wire


induces a magnetic field across
the gap, which in turn
magnetizes a small area of the
The write head itself is made of recording medium
easily magnetizable material
and is in the shape of a
rectangular doughnut with a Reversing the direction of the
gap along one side and a few current reverses the direction of
turns of conducting wire along the magnetization on the
the opposite side recording medium
Inductive Write/Magnetoresistive Read
Head
Disk
Data
Layout
Disk Layout Methods Diagram
Winchester Disk Format
Seagate ST506
+ Table 6.1
Physical Characteristics
of Disk Systems

Table 6.1 Physical Characteristics of Disk Systems


+
Multiple
Platters
Tracks

Cylinders

+
+ Disk
The head mechanism provides a
classification of disks into three Classification
types

 The head must generate or sense Winchester Heads


an electromagnetic field of
sufficient magnitude to write and  Used in sealed drive assemblies that
read properly are almost free of contaminants

 The narrower the head, the closer  Designed to operate closer to the
it must be to the platter surface to disk’s surface than conventional rigid
function disk heads, thus allowing greater data
density
 A narrower head means
narrower tracks and therefore  Is actually an aerodynamic foil that
greater data density rests lightly on the platter’s surface
when the disk is motionless
 The closer the head is to the disk  The air pressure generated by a
the greater the risk of error from spinning disk is enough to make
impurities or imperfections the foil rise above the surface
Typical Hard Disk Parameters

Table 6.2 Typical Hard Disk Drive Parameters


+
Timing of Disk I/O Transfer
+
Disk Performance Parameters
 When the disk drive is operating the disk is rotating at constant speed

 To read or write the head must be positioned at the desired track and at the beginning of the desired
sector on the track
 Track selection involves moving the head in a movable-head system or electronically selecting one head on a
fixed-head system
 Once the track is selected, the disk controller waits until the appropriate sector rotates to line up with the head

 Seek time
 On a movable–head system, the time it takes to position the head at the track

 Rotational delay (rotational latency)


 The time it takes for the beginning of the sector to reach the head

 Access time
 The sum of the seek time and the rotational delay
 The time it takes to get into position to read or write

 Transfer time
 Once the head is in position, the read or write operation is then performed as the sector moves under the head
 This is the data transfer portion of the operation
+  Consists of 7 levels

 Levels do not imply a hierarchical


relationship but designate different design
RAID architectures that share three common
characteristics:

1) Set of physical disk drives viewed by the


operating system as a single logical drive

2) Data are distributed across the physical


drives of an array in a scheme known as
striping
Redundant Array of
Independent Disks 3) Redundant disk capacity is used to store
parity information, which guarantees data
recoverability in case of a disk failure
+

BATAS KELOMPOK
Table 6.3 RAID Levels

N = number of data disks; m proportional to log N


RAID Levels
0, 1, 2
RAID
Levels
3, 4, 5, 6
Data Mapping for a RAID Level 0 Array
+ RAID
 Addresses the issues of request patterns of the
host systemand layout of the data
Raid0

Level 0  Impact of redundancy does not interfere with


analysis

RAID 0 for High Data Transfer


Capacity
RAID 0 for High I/O Request Rate
 For applications to experience a
high transfer rate two requirements
 For an individual I/O request for a small
must be met:
amount of data the I/O time is dominated
1. A high transfer capacity must exist by the seek time and rotational latency
along the entire path between host
memory and the individual disk  A disk array can provide high I/O
drives execution rates by balancing the I/O
2. The application must make I/O load across multiple disks
requests that drive the disk array
 Ifthe strip size is relatively large
efficiently
multiple waiting I/O requests can be
handled in parallel, reducing the
queuing time for each request
+ Raid1
RAID
Level 1
Characteristics Positive Aspects

 Differs from RAID levels 2 through 6  A read request can be serviced by


in the way in which redundancy is either of the two disks that contains
achieved the requested data
 Redundancy is achieved by the simple  There is no “write penalty”
expedient of duplicating all the data
 Recovery from a failure is simple,
 Data striping is used but each logical when a drive fails the data can be
strip is mapped to two separate physical accessed from the second drive
disks so that every disk in the array has
a mirror disk that contains the same  Provides real-time copy of all data
data
 Can achieve high I/O request rates if
 RAID 1 can also be implemented
the bulk of the requests are reads
without data striping, although this is
less common  Principal disadvantage is the cost
+ Raid2
RAID
Level 2
Characteristics Performance
 An error-correcting code is calculated
 Makes use of a parallel access across corresponding bits on each data
technique disk and the bits of the code are stored
in the corresponding bit positions on
 In a parallel access array all member multiple parity disks
disks participate in the execution of
every I/O request  Typically a Hamming code is used,
which is able to correct single-bit errors
 Spindles of the individual drives are and detect double-bit errors
synchronized so that each disk head
 The number of redundant disks is
is in the same position on each disk
proportional to the log of the number of
at any given time
data disks
 Data striping is used  Would only be an effective choice in an
 Strips are very small, often as small as environment in which many disk errors
a single byte or word occur
+ Raid3
RAID
Level 3
Redundancy Performance
 Requires only a single redundant  In the event of a drive failure, the parity drive
disk, no matter how large the disk is accessed and data is reconstructed from the
remaining devices
array
 Once the failed drive is replaced, the missing
 Employs parallel access, with data data can be restored on the new drive and
distributed in small strips operation resumed

 In the event of a disk failure, all of the data are


 Instead of an error correcting code, a
still available in what is referred to as reduced
simple parity bit is computed for the mode
set of individual bits in the same
position on all of the data disks  Return to full operation requires that the failed
disk be replaced and the entire contents of the
 Can achieve very high data transfer failed disk be regenerated on the new disk
rates  In a transaction-oriented environment
performance suffers
+ Raid4
RAID
Level 4
Characteristics Performance

 Makes use of an independent  Involves a write penalty when an


access technique I/O write request of small size is
 In an independent access array, performed
each member disk operates
independently so that separate I/O  Each time a write occurs the array
requests can be satisfied in parallel management software must update
the user data the corresponding
 Data striping is used parity bits
 Strips are relatively large
 Thus each strip write involves two
 To calculate the new parity the reads and two writes
array management software must
read the old user strip and the old
parity strip
+ Raid 56
RAID RAID
Level 5 Level 6
Characteristics Characteristics
 Organized in a similar fashion to  Two different parity calculations
RAID 4 are carried out and stored in
separate blocks on different disks
 Difference is distribution of the
parity strips across all disks
 Advantage is that it provides
extremely high data availability
 A typical allocation is a round-
robin scheme
 Three disks would have to fail
within the mean time to repair
 The distribution of parity strips (MTTR) interval to cause data to be
across all drives avoids the lost
potential I/O bottleneck found in
RAID 4
 Incurs a substantial write penalty
because each write affects two
parity blocks
Table 6.4
RAID
Comparison
(page 1 of 2)
Table 6.4
RAID
Comparison
(page 2 of 2)
Click icon to add picture

+
BATAS KELOMPOK
Flash

Memory

+
Figure 6.10
Flash Memory Operation
Solid State Drive (SSD)

A memory device made


with solid state Two distinctive
components that can be Flash memory types of flash
used as a replacement to memory:
a hard disk drive (HDD)
A type of semiconductor NOR
memory used in many • The basic unit of access is a bit
consumer electronic • Provides high-speed random
products including smart access
phones, GPS devices, • Used to store cell phone operating
MP3 players, digital system code and on Windows
computers for the BIOS program
cameras, and USB that runs at start-up
The term solid state devices
refers to electronic
circuitry built with NAND
semiconductors • The basic unit is 16 or 32 bits
• Reads and writes in small blocks
Cost and performance • Used in USB flash drives, memory
has evolved to the point cards, and in SSDs
where it is feasible to • Does
Does not
not provide
provide aa random-access
random-access
use to replace HDDs external
external address
address bus
bus so
so the
the data
data
must
must be read on a block-wise basis
be read on a block-wise basis
SSD Compared to HDD
Table
SSDs have the following advantages over HDDs:
6.5
 High-performance input/output operations per second (IOPS)

 Durability

 Longer lifespan

 Lower power consumption Comparisons


 Quieter and cooler running capabilities

 Lower access times and latency rates

+
+
SSD
Organization
+ Practical Issues
There are two practical issues peculiar to SSDs that
arenot faced by HDDs:
 Flash memory becomes unusable
 SDD performance has a tendency
after a certain number of writes
to slow down as the device is used
 The entire block must be read
 Techniques for prolonging life:
from the flash memory and  Front-ending the flash with a
placed in a RAM buffer cache to delay and group write
operations
 Before the block can be written
 Using wear-leveling algorithms
back to flash memory, the entire
that evenly distribute writes
block of flash memory must be
across block of cells
erased
 Bad-block management
 The entire block from the buffer techniques
is now written back to the flash
memory
 Most flash devices estimate
their own remaining lifetimes so
systems can anticipate failure
and take preemptive action
Table 6. 6
Optical
Disk
Products
+
Compact Disk Read-Only Memory
(CD-ROM)
 Audio CD and the CD-ROM share a similar technology
 The main difference is that CD-ROM players are more rugged and have
error correction devices to ensure that data are properly transferred

 Production:
 The disk is formed from a resin such as polycarbonate
 Digitally recorded information is imprinted as a series of microscopic pits on the
surface of the polycarbonate
 This is done with a finely focused, high intensity laser to create a master disk
 The master is used, in turn, to make a die to stamp out copies onto polycarbonate
 The pitted surface is then coated with a highly reflective surface, usually aluminum
or gold
 This shiny surface is protected against dust and scratches by a top coat
of clear acrylic
 Finally a label can be silkscreened onto the acrylic
+
CD Operation
+
CD-ROM Block Format
+
 CD-ROM is appropriate for the distribution of large CD-ROM
amounts of data to a large number of users

 Because the expense of the initial writing process it is not


appropriate for individualized applications
 The CD-ROM has two advantages:
 The optical disk together with the information stored on it
can be mass replicated inexpensively

 The optical disk is removable, allowing the disk itself to be


used for archival storage
 The CD-ROM disadvantages:
 It is read-only and cannot be updated

 It has an access time much longer than that of a magnetic


disk drive
+
CD Recordable CD Rewritable
(CD-R) (CD-RW)
 Write-once read-many Can be repeatedly written and overwritten
Phase change disk uses a material that has
 Accommodates applications in which two significantly different reflectivities in
only one or a small number of copies
two different phase states
of a set of data is needed
Amorphous state
 Disk is prepared in such a way that it Molecules exhibit a random orientation
can be subsequently written once that reflects light poorly
with a laser beam of modest-intensity Crystalline state
Has a smooth surface that reflects light
 Medium includes a dye layer which
well
is used to change reflectivity and is
A beam of laser light can change the
activated by a high-intensity laser
material from one phase to the other
 Provides a permanent record of large Disadvantage is that the material
volumes of user data eventually and permanently loses its
desirable properties
Advantage is that it can be rewritten
+
Digital
Versatile Disk
(DVD)
High-Definition
Optical Disks
+
Magnetic Tape
 Tape systems use the same reading and recording techniques as disk
systems

 Medium is flexible polyester tape coated with magnetizable material

 Coating may consist of particles of pure metal in special binders or


vapor-plated metal films

 Data on the tape are structured as a number of parallel tracks running


lengthwise

 Serial recording
 Data are laid out as a sequence of bits along each track

 Data are read and written in contiguous blocks called physical records

 Blocks on the tape are separated by gaps referred to as inter-record gaps


+

Magnetic Tape
Features
+
Table 6.7
LTO Tape Drives
+ Summary
External Memory

 RAID
 Magnetic disk
 RAID level 0
 Magnetic read and write mechanisms
 RAID level 1
 Data organization and formatting
 Physical characteristics
 RAID level 2
 Disk performance parameters
 RAID level 3
 RAID level 4
 Solid state drives  RAID level 5
 Flash memory  RAID level 6
 SSD compared to HDD
 SSD organization  Optical memory
 Practical issues  Compact disk
 Digital versatile disk
 Magnetic tape
 High-definition optical disks

You might also like