Volume Specifications

In OpenStack, “volumes” are persistent storage that you can attach to your running OpenStack Compute instances to. In openstack we have set up three classes of service for volumes. These have different limits, which are detailed below.

Volume Types

We have three main volume types:

  • high-iops
  • standard

Volume Type List

An overview of the three volume types below:

NameRead Bytes SecRead IOPS SecWrite Bytes SecWrite IOPS Sec
high-iops5242880001000052428800010000
standard20971520025002097152002500

Choosing a Volume Type

You can select one of the three volume types upon creation of a volume with the following command (Unless otherwise specified, the type “default” is always used): $ openstack volume create <volume-name> --size 10 --type high-iops

Changing the Volume Type

You can adjust the selected type of a volume. To do so, you can use the “Change Volume Type” function in the dashboard. Alternatively, you can change the type via the CLI with the following command: $ openstack volume set <volume-name> --type high-iops However, changing the volume type is only possible if the volume is not currently in use by an instance.