cinder/cinder/api
Xing Yang cf961f83ac Consistency Groups
This patch enables Consistency Groups support in Cinder.
It will be implemented for snapshots for CGs in phase 1.

Design
------------------------------------------------
The workflow is as follows:

1) Create a CG, specifying all volume types that can be supported by this
CG. The scheduler chooses a backend that supports all specified volume types.
The CG will be empty when it is first created.   Backend needs to report
consistencygroup_support = True.  Volume type can have the following in
extra specs: {'capabilities:consistencygroup_support': '<is> True'}.
If consistencygroup_support is not in volume type extra specs, it will be
added to filter_properties by the scheduler to make sure that the scheduler
will select the backend which reports consistency group support capability.

Create CG CLI:
cinder consisgroup-create --volume-type type1,type2 mycg1

This will add a CG entry in the new consistencygroups table.

2) After the CG is created, create a new volume and add to the CG.
Repeat until all volumes are created for the CG.

Create volume CLI (with CG):
cinder create --volume-type type1 --consisgroup-id <CG uuid> 10

This will add a consistencygroup_id foreign key in the new volume
entry in the db.

3) Create a snapshot of the CG (cgsnapshot).

Create cgsnapshot CLI:
cinder cgsnapshot-create <CG uuid>

This will add a cgsnapshot entry in the new cgsnapshots table, create
snapshot for each volume in the CG, and add a cgsnapshot_id foreign key
in each newly created snapshot entry in the db.

DocImpact
Implements: blueprint consistency-groups

Change-Id: Ic105698aaad86ee30ef57ecf5107c224fdadf724
2014-08-27 01:47:31 -04:00
..
contrib Consistency Groups 2014-08-27 01:47:31 -04:00
middleware Use oslo.i18n 2014-08-08 17:26:41 -05:00
openstack Enable import group hacking rule 2014-08-14 13:10:58 +08:00
schemas Add XML deserializer for qos_manage delete_keys API 2014-05-25 11:37:30 +08:00
v1 Fix variable name in api/v<n>/snapshot.py 2014-08-20 13:12:09 -06:00
v2 Consistency Groups 2014-08-27 01:47:31 -04:00
views Consistency Groups 2014-08-27 01:47:31 -04:00
__init__.py Remove vim header 2013-12-30 18:53:02 -06:00
auth.py Use oslo.i18n 2014-08-08 17:26:41 -05:00
common.py Use oslo.i18n 2014-08-08 17:26:41 -05:00
extensions.py Use oslo.i18n 2014-08-08 17:26:41 -05:00
sizelimit.py Use oslo.i18n 2014-08-08 17:26:41 -05:00
urlmap.py Enable import group hacking rule 2014-08-14 13:10:58 +08:00
versions.py Fix broken version responses 2014-04-29 21:22:01 +02:00
xmlutil.py Merge "fix atom link in XML Version API" 2014-08-18 07:07:00 +00:00