Atom feed of this document
  
Kilo -  Kilo -  Kilo -  Kilo -  Kilo -  Kilo -  Kilo -  Kilo - 

 X-IO volume driver

The X-IO volume driver for OpenStack Block Storage enables ISE products to be managed by OpenStack Block Storage nodes. This driver can be configured to work with iSCSI and Fibre Channel storage protocols. The X-IO volume driver allows the cloud operator to take advantage of ISE features like Quality of Service and Continous Adaptive Data Placement (CADP). It also supports creating thin volumes and specifying volume media affinity.

 Requirements

ISE FW 2.8.0 or ISE FW 3.1.0 is required for OpenStack Block Storage support. The X-IO volume driver will not work with older ISE FW.

 Supported operations

  • Create, delete, attach, detach, retype, clone, and extend volumes.

  • Create a volume from snapshot.

  • Create, list, and delete volume snapshots.

  • Manage and unmanage a volume.

  • Get volume statistics.

  • Create a thin provisioned volume.

  • Create volumes with QoS specifications.

 Configure X-IO Volume driver

To configure the use of an ISE product with OpenStack Block Storage, modify your cinder.conf file as follows. Be careful to use the one that matches the storage protocol in use:

 Fibre Channel
volume_driver = cinder.volume.drivers.xio.XIOISEFCDriver
san_ip = 1.2.3.4              # the address of your ISE REST management interface
san_login = administrator     # your ISE management admin login
san_password = password       # your ISE management admin password
 iSCSI
volume_driver = cinder.volume.drivers.xio.XIOISEISCSIDriver
san_ip = 1.2.3.4              # the address of your ISE REST management interface
san_login = administrator     # your ISE management admin login
san_password = password       # your ISE management admin password
iscsi_ip_address = ionet_ip   # ip address to one ISE port connected to the IONET
 Optional configuration parameters

Table 2.35. Description of X-IO volume driver configuration options
Configuration option = Default value Description
[DEFAULT]
driver_use_ssl = False (BoolOpt) Tell driver to use SSL for connection to backend storage if the driver supports it.
ise_completion_retries = 30 (IntOpt) Number on retries to get completion status after issuing a command to ISE.
ise_connection_retries = 5 (IntOpt) Number of retries (per port) when establishing connection to ISE management port.
ise_raid = 1 (IntOpt) Raid level for ISE volumes.
ise_retry_interval = 1 (IntOpt) Interval (secs) between retries.
ise_storage_pool = 1 (IntOpt) Default storage pool for volumes.

 Multipath

The X-IO ISE supports a multipath configuration, but multipath must be enabled on the compute node (see ISE Storage Blade Best Practices Guide). For more information, see www.openstack.org.

 Volume types

OpenStack Block Storage uses volume types to help the administrator specify attributes for volumes. These attributes are called extra-specs. The X-IO volume driver support the following extra-specs.

 

Table 2.36. Extra specs

Extra-specs nameValid valuesDescription
Feature:Raid1, 5RAID level for volume.
Feature:Pool1 - n (n being number of pools on ISE)Pool to create volume in.
Affinity:Typecadp, flash, hddVolume media affinity type.
Alloc:Type0 (thick), 1 (thin)Allocation type for volume. Thick or thin
QoS:minIOPSn (value less than maxIOPS)Minimum IOPS setting for volume.
QoS:maxIOPSn (value bigger than minIOPS)Maximum IOPS setting for volume.
QoS:burstIOPSn (value bigger than minIOPS)Burst IOPS setting for volume.


 Examples

Create a volume type called xio1-flash for volumes that should reside on ssd storage:

$ cinder type-create xio1-flash
$ cinder type-key xio1-flash set Affinity:Type=flash

Create a volume type called xio1 and set QoS min and max:

$ cinder type-create xio1
$ cinder type-key xio1 set QoS:minIOPS=20
$ cinder type-key xio1 set QoS:maxIOPS=5000

Questions? Discuss on ask.openstack.org
Found an error? Report a bug against this page

loading table of contents...