Initialize Amazon EBS volumes
Empty EBS volumes receive their maximum performance the moment that they are created and do not require initialization (formerly known as pre-warming).
For volumes, of any volume type, that were created from snapshots, the storage blocks must be pulled down from Amazon S3 and written to the volume before you can access them. This preliminary action takes time and can cause a significant increase in the latency of I/O operations the first time each block is accessed. Volume performance is achieved after all blocks have been downloaded and written to the volume.
Important
While initializing Provisioned IOPS SSD volumes that were created from snapshots, the performance
of the volume may drop below 50 percent of its expected level, which causes the volume
to display a warning
state in the I/O Performance
status check. This is expected, and you can ignore the warning
state on
Provisioned IOPS SSD volumes while you are initializing them. For more information, see Amazon EBS volume status checks.
For most applications, amortizing the initialization cost over the lifetime of the volume is acceptable. To avoid this initial performance hit in a production environment, you can use one of the following options:
-
Force the immediate initialization of the entire volume. For more information, see Linux instances (Linux instances) or Windows instances (Windows instances).
-
Enable fast snapshot restore on a snapshot to ensure that the EBS volumes created from it are fully-initialized at creation and instantly deliver all of their provisioned performance. For more information, see Amazon EBS fast snapshot restore.
To initialize a volume created from a snapshot on Linux
-
Attach the newly-restored volume to your Linux instance.
-
Use the lsblk command to list the block devices on your instance.
$
lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT xvdf 202:80 0 30G 0 disk xvda1 202:1 0 8G 0 disk /
Here you can see that the new volume,
/dev/xvdf
, is attached, but not mounted (because there is no path listed under theMOUNTPOINT
column). -
Use the dd or fio utilities to read all of the blocks on the device. The dd command is installed by default on Linux systems, but fio is considerably faster because it allows multi-threaded reads.
Note
This step may take several minutes up to several hours, depending on your EC2 instance bandwidth, the IOPS provisioned for the volume, and the size of the volume.
[dd] The
if
(input file) parameter should be set to the drive you wish to initialize. Theof
(output file) parameter should be set to the Linux null virtual device,/dev/null
. Thebs
parameter sets the block size of the read operation; for optimal performance, this should be set to 1 MB.Important
Incorrect use of dd can easily destroy a volume's data. Be sure to follow precisely the example command below. Only the
if=/dev/
parameter will vary depending on the name of the device you are reading.xvdf
$
sudo dd if=/dev/
xvdf
of=/dev/null bs=1M[fio] If you have fio installed on your system, use the following command to initialize your volume. The
--filename
(input file) parameter should be set to the drive you wish to initialize.$
sudo fio --filename=/dev/
xvdf
--rw=read --bs=1M --iodepth=32 --ioengine=libaio --direct=1 --name=volume-initializeTo install fio on Amazon Linux, use the following command:
sudo yum install -y fio
To install fio on Ubuntu, use the following command:
sudo apt-get install -y fio
When the operation is finished, you will see a report of the read operation. Your volume is now ready for use. For more information, see Make an Amazon EBS volume available for use.
Before using either tool, gather information about the disks on your system as follows:
To gather information about the system disks
-
Use the wmic command to list the available disks on your system:
wmic diskdrive get size,deviceid
The following is example output:
DeviceID Size \\.\PHYSICALDRIVE2 80517265920 \\.\PHYSICALDRIVE1 80517265920 \\.\PHYSICALDRIVE0 128849011200 \\.\PHYSICALDRIVE3 107372805120
-
Identify the disk to initialize using dd or fio. The
C:
drive is on\\.\PHYSICALDRIVE0
. You can use thediskmgmt.msc
utility to compare drive letters to disk drive numbers if you are not sure which drive number to use.