SSD Over-Provisioning
Over-provision using HPA
Use these instructions if you can directly access the flash device. Most RAID controllers prevent direct control. For some drives, turning off HPA may be difficult, if not impossible. Use partitions to over-provision instead.
Install a recent version of hdparm (version 9.37+)
Some operating systems have a version of hdparm already installed. We require version 9.37 or higher. If you do not have a good version of hdparm, you can download and install as follows:
wget "downloads.sourceforge.net/project/hdparm/hdparm/hdparm-9.43.tar.gz"tar -zxvf hdparm-9.43.tar.gzcd hdparm-9.43make
Validate that the drive is not frozen
Check to see if the drive is frozen with this command:
sudo ./hdparm -I /dev/<deviceID>
If it’s frozen then unplug the drive for a few seconds and replug them or if you do not have access to physical machine then just suspending the machine for few seconds will remove it out of frozen state.
The command to bring any drive out of frozen state is:
rtcwake -m mem -s 180
How much to over-provision
Issue the hdparm -N
command to determine the value for over-provisioning. This command returns a fraction that indicates the maximum number of available sectors. The numerator is the available space and denominator is the size of the drive. For example:
$ sudo hdparm -N /dev/sdb/dev/sdb: max sectors = 468862128/468862128, HPA is disabled
Calculate the over-provisioning value by multiplying the denominator by 79%. For example, in this case, we would calculate: 468862128 x 0.79 = 370401081.
Set the over-provisioning:
sudo ./hdparm -NpXXXXXXXX --yes-i-know-what-i-am-doing /dev/<deviceID>
XXXXXXXX
is the number of sectors to over-provision, as calculated above.
Once you have over-provisioned all of your SSDs, restart the machine.
After the machine is restarted, confirm that the SSD(s) are correctly over-provisioned by using the following command for each drive:
sudo ./hdparm -N /dev/<deviceID>
returns “HPA is enabled
” with the correct fraction. For example, you might see:
$ sudo ./hdparm -N /dev/sdb/dev/sdb: max sectors = 370401081/468862128, HPA is enabled
Over-provision using Partitions
This page describes how to do basic drive installation when you are using a RAID controller and RAID features, or if you simply prefer using partitions.
Set up RAID controllers
Be sure that the following configuration steps are done:
- Set up the flash devices connected to the RAID controller as separated devices configured with RAID 0 with 128KB strips (use LSI’s StorCLI (AKA MegaCLI), if possible)
- Set the Read Policy as No Read Ahead
- Set the Write Policy as Write Through
- Enable NCQ/AHCI if that option is available
Delete any existing partitions using fdisk
Review the partitions for the SSD device(s), such as sdb
or sdc
, with this command:
sudo /sbin/fdisk /dev/<deviceID>
- Look at the partition table by entering:
p
- Delete the partition (if one exists) by entering:
d
- Commit the changes and exit:
w
Over-Provision with fdisk
Over-provisioning reserves a portion of the flash device for use by the disk controller, to allow for high speed operation. Aerospike recommends that a total of 29% of the disk be “over-provisioned” (set aside) to maintain performance. Consumer-rated drives typically set aside 8% and need to be overprovisioned by an additional 21%. Enterprise-grade flash devices typically set aside enough, so you do not need to do any additional over-provisioning. Check with your flash device manufacturer to determine whether your drive is over-provisioned and by how much. If this is not necessary, you may skip the over-provisioning step and go straight to initializing the drives.
If your flash device requires over-provisioning, you must create a disk partition for the disk space that is to be used for data storage. The typical case is to create a partition that is 79% of the rated size, to ensure that 21% of the disk is reserved for the disk controller. To create a disk partition use this command:
sudo /sbin/fdisk /dev/<deviceID>
- To create a new partition enter
n
- To make it the primary partition enter
p
- For the partition number enter
1
- Specify the first cylinder enter
1
- Specify the last cylinder — multiply the proposed (default) value by 0.79
- Verify the partition table by entering
p
- Commit the changes by entering
w
The fdisk command sequence will look something like this:
Command (m for help): nCommand action e extended p primary partition (1-4)pPartition number (1-4): 1First cylinder (1-19140, default 1): 1Last cylinder, +cylinders or +size{K,M,G} (1-19140, default 19140): 15121
Command (m for help): pDisk /dev/sdb: 157.4 GB, 157437394944 bytes255 heads, 63 sectors/track, 19140 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0xeff8f3ae Device Boot Start End Blocks Id System/dev/sdb1 1 15121 121459401 83 LinuxCommand (m for help): wThe partition table has been altered!Calling ioctl() to re-read partition table.Syncing disks.
Do the above steps for all drives.
Reboot if necessary for partitions to be recognized. fdisk
will indicate whether or not a reboot will be necessary after committing each partition change.
Using partitions for over-provisioning does not require restarting the server.
Over-Provision with parted
Another tool to use for partitioning and over-provisioning is parted
. If we use the example above and we want to over-provision a disk by 21% we can use the following command:
$ sudo parted -a opt --script /dev/nvme1n1 mklabel gpt mkpart primary 0% 79%
Check that a partition has been created and we have free (unallocated) space on the disk:
$ sudo parted /dev/nvme1n1 print freeModel: NVMe Device (nvme)Disk /dev/nvme1n1: 300GBSector size (logical/physical): 512B/512BPartition Table: gptDisk Flags:
Number Start End Size File system Name Flags 17.4kB 1049kB 1031kB Free Space 1 1049kB 237GB 237GB primary 237GB 300GB 63.0GB Free Space