Jump to: navigation, search

Difference between revisions of "Cinder-multi-backend"

(Configuration)
Line 9: Line 9:
 
<div style="margin-left: 2em;">
 
<div style="margin-left: 2em;">
 
   <source lang="ini">
 
   <source lang="ini">
 +
# a list of backends that will be served by this machine
 +
enabled_backends=lvmdriver-1,lvmdriver-2
 
[lvmdriver-1]
 
[lvmdriver-1]
 
volume_group=stack-volumes-1
 
volume_group=stack-volumes-1
Line 20: Line 22:
 
</div>
 
</div>
  
   #The cinder filter_scheduler also needs to be used.
+
   #The cinder filter_scheduler also needs to be used in order to achieve the goal that one
 +
  #can explicitly create volume on certain back-end using volume types. However filter scheduler is the default scheduler starting Grizzly.
 
<div style="margin-left: 2em;">
 
<div style="margin-left: 2em;">
 
   <source lang="ini">
 
   <source lang="ini">

Revision as of 01:22, 1 March 2013

Cinder multi backends

This article is a explanation for creating an environment w/ multiple backends. Cinder volume backends are spawned as children to cinder-volume, and they are keyed from a unique Queue. They are named cinder-volume.HOST.BACKEND. Example cinder-volume.ubuntu.lvmdriver. The filter scheduler determines where to send the volume based on the volume type thats passed in.

Configuration

The configuration now has a flag, enabled_backends. This defines the names of the option groups for the different backends. Each backend defined here has to link to a config group (example [lvmdriver]) in the configuration. A full example of this is included in the configuration with 2 backends. The options need to be defined in the group, or the defaults in the code will be used. Putting a config value in [DEFAULT] will not be used.

Example (cinder.conf)

# a list of backends that will be served by this machine
enabled_backends=lvmdriver-1,lvmdriver-2
[lvmdriver-1]
volume_group=stack-volumes-1
volume_driver=cinder.volume.drivers.lvm.LVMISCSIDriver
volume_backend_name=LVM_iSCSI
[lvmdriver-2]
volume_group=stack-volumes-2
volume_driver=cinder.volume.drivers.lvm.LVMISCSIDriver
volume_backend_name=LVM_iSCSI
 #The cinder filter_scheduler also needs to be used in order to achieve the goal that one 
 #can explicitly create volume on certain back-end using volume types. However filter scheduler is the default scheduler starting Grizzly.
scheduler_driver=cinder.scheduler.filter_scheduler.[[FilterScheduler]]

Volume Type

The volume_type must be defined in the volume_type table in the database. When creating a volume for a particular backend (or group of > 1 backends) the volume_type is passed in. There can be > 1 backend per volume_type, and the capacity scheduler kicks in and keeps the backends of a particular volume_type even. In order to group a volume_type to a backend, you must define extra specs for the type.

Example

  • cinder --os-username admin --os-tenant-name admin type-create lvm
  • cinder --os-username admin --os-tenant-name admin type-key lvm set volume_backend_name=LVM_iSCSI
  • cinder --os-username admin --os-tenant-name admin extra-specs-list (just to check the settings are there)

Usage

When creating a volume, specify the volume_type that you created in the above example. This will be used in determining which type of backend to send to. As previously stated, if there is > 1 backend for a type, the capacity scheduler is used.

  • cinder create --volume_type lvm --display_name my-test 1

If the volume type is defined in the database but no volume types exist for that backend in the configuration, then no valid host will be found. If both are true, it will prov to one of the volume backends.