cinder/doc/source/devref/volume.rst
2012-05-03 10:48:26 -07:00

2.1 KiB

Storage Volumes, Disks

rework after iSCSI merge (see 'Old Docs') (todd or vish)

The cinder.volume.manager Module -------------------------------------

cinder.volume.manager

The cinder.volume.driver Module -------------------------------------

cinder.volume.driver

Tests

The volume_unittest Module

cinder.tests.volume_unittest

Old Docs

Cinder uses ata-over-ethernet (AoE) to export storage volumes from multiple storage nodes. These AoE exports are attached (using libvirt) directly to running instances.

Cinder volumes are exported over the primary system VLAN (usually VLAN 1), and not over individual VLANs.

AoE exports are numbered according to a "shelf and blade" syntax. In order to avoid collisions, we currently perform an AoE-discover of existing exports, and then grab the next unused number. (This obviously has race condition problems, and should be replaced by allocating a shelf-id to each storage node.)

The underlying volumes are LVM logical volumes, created on demand within a single large volume group.