Skip to content
Snippets Groups Projects
Commit 855f9bad authored by Constantinos Venetsanopoulos's avatar Constantinos Venetsanopoulos Committed by Iustin Pop
Browse files

Document the ExtStorage `SetInfo' functionality


Small updates to the extstorage design document and interface.

Signed-off-by: default avatarConstantinos Venetsanopoulos <cven@grnet.gr>
Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent ef13148c
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@ This includes two distinct disk templates:
Background
==========
DRBD is currently the only shared storage backend supported by Ganeti.
DRBD offers the advantages of high availability while running on
commodity hardware at the cost of high network I/O for block-level
......@@ -45,6 +46,7 @@ need to take care about the mirroring process from one host to another.
Use cases
=========
We consider the following use cases:
- A virtualization cluster with FibreChannel shared storage, mapping at
......@@ -63,9 +65,9 @@ The design addresses the following procedures:
storage.
- Introduction of a shared file storage disk template for use with networked
filesystems.
- Introduction of shared block device disk template with device
- Introduction of a shared block device disk template with device
adoption.
- Introduction of an External Storage Interface.
- Introduction of the External Storage Interface.
Additionally, mid- to long-term goals include:
......@@ -156,8 +158,9 @@ The shared block device template will make the following assumptions:
- The device will be available with the same path under all nodes in the
node group.
Introduction of an External Storage Interface
Introduction of the External Storage Interface
==============================================
Overview
--------
......@@ -180,6 +183,7 @@ An “ExtStorage provider” will have to provide the following methods:
- Grow a disk
- Attach a disk to a given node
- Detach a disk from a given node
- SetInfo to a disk (add metadata)
- Verify its supported parameters
The proposed ExtStorage interface borrows heavily from the OS
......@@ -191,6 +195,7 @@ provider is expected to provide the following scripts:
- ``grow``
- ``attach``
- ``detach``
- ``setinfo``
- ``verify``
All scripts will be called with no arguments and get their input via
......@@ -208,6 +213,9 @@ all commands, and some of them might have extra ones.
``EXTP_name``
ExtStorage parameter, where `name` is the parameter in
upper-case (same as OS interface's ``OSP_*`` parameters).
``VOL_METADATA``
A string containing metadata to be set for the volume.
This is exported only to the ``setinfo`` script.
All scripts except `attach` should return 0 on success and non-zero on
error, accompanied by an appropriate error message on stderr. The
......@@ -221,9 +229,9 @@ Implementation
To support the ExtStorage interface, we will introduce a new disk
template called `ext`. This template will implement the existing Ganeti
disk interface in `lib/bdev.py` (create, remove, attach, assemble,
shutdown, grow), and will simultaneously pass control to the external
scripts to actually handle the above actions. The `ext` disk template
will act as a translation layer between the current Ganeti disk
shutdown, grow, setinfo), and will simultaneously pass control to the
external scripts to actually handle the above actions. The `ext` disk
template will act as a translation layer between the current Ganeti disk
interface and the ExtStorage providers.
We will also introduce a new IDISK_PARAM called `IDISK_PROVIDER =
......
......@@ -21,8 +21,9 @@ also be accessible by all nodes of this nodegroup too.
REFERENCE
---------
There are seven required files: *create*, *attach*, *detach*, *remove*,
*grow*, *verify* (executables) and *parameters.list* (text file).
There are eight required files: *create*, *attach*, *detach*, *remove*,
*grow*, *setinfo*, *verify* (executables) and *parameters.list*
(text file).
Common environment
~~~~~~~~~~~~~~~~~~
......@@ -57,6 +58,11 @@ EXTP_*name*
variable, prefixed with ``EXTP_``, and upper-cased. For example, a
``fromsnap`` parameter will be exported as ``EXTP_FROMSNAP``.
VOL_METADATA
Available only to the **setinfo** script. A string containing
metadata to be associated with the volume. Currently, Ganeti sets
this value to ``originstname+X`` where ``X`` is the instance's name.
EXECUTABLE SCRIPTS
------------------
......@@ -159,6 +165,23 @@ details on when the running instance becomes aware of its grown disk.
The script returns ``0`` on success.
setinfo
~~~~~~~
This script is used to add metadata to an existing volume. It is helpful
when we need to keep an external, Ganeti-independent mapping between
instances and volumes; primarily for recovery reasons. This is provider
specific and the author of the provider chooses whether/how to implement
this. You can just exit with ``0``, if you do not want to implement this
feature, without harming the overall functionality of the provider.
The ``VOL_METADATA`` variable contains the metadata of the volume.
Currently, Ganeti sets this value to ``originstname+X`` where ``X`` is
the instance's name.
The script returns ``0`` on success.
verify
~~~~~~
......@@ -196,8 +219,8 @@ NOTES
Backwards compatibility
~~~~~~~~~~~~~~~~~~~~~~~
The ExtStorage Interface was introduced in Ganeti 2.6.
Ganeti 2.6 and up is compatible with the ExtStorage Interface.
The ExtStorage Interface was introduced in Ganeti 2.7.
Ganeti 2.7 and up is compatible with the ExtStorage Interface.
Common behaviour
~~~~~~~~~~~~~~~~
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment