openstack-manuals/doc/config-reference/compute/section_compute-configure-backing-storage.xml
Christian Berendt a6bce01980 Unified the syntax of the XML root element (config-reference)
The XML root element of Docbook XML files should match the following
format:

<ELEMENT xmlns="http://docbook.org/ns/docbook"
  xmlns:xi="http://www.w3.org/2001/XInclude"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  version="5.0"
  xml:id="THE_XML_ID_OF_THE_ELEMENT">

Change-Id: I02a75b63d0fb3ea4a7d015794b9229a94ddad279
2014-07-10 14:11:19 +02:00

39 lines
1.7 KiB
XML

<section xmlns="http://docbook.org/ns/docbook"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="5.0"
xml:id="section_configure-backing-storage">
<title>Configure Compute backing storage</title>
<para>
Backing Storage is the storage used to provide the expanded
operating system image, and any ephemeral storage. Inside the
virtual machine, this is normally presented as two virtual hard
disks (for example, <filename>/dev/vda</filename> and
<filename>/dev/vdb</filename> respectively). However, inside
OpenStack, this can be derived from one of three methods: LVM,
QCOW or RAW, chosen using the <literal>images_type</literal>
option in <filename>nova.conf</filename> on the compute node.
</para>
<para>
QCOW is the default backing store. It uses a copy-on-write
philosophy to delay allocation of storage until it is actually
needed. This means that the space required for the backing of an
image can be significantly less on the real disk than what seems
available in the virtual machine operating system.
</para>
<para>
RAW creates files without any sort of file formatting, effectively
creating files with the plain binary one would normally see on a
real disk. This can increase performance, but means that the
entire size of the virtual disk is reserved on the physical disk.
</para>
<para>
Local <link
xlink:href="http://http//en.wikipedia.org/wiki/Logical_Volume_Manager_(Linux)"
>LVM volumes</link> can also be used. Set
<literal>images_volume_group = nova_local</literal> where
<literal>nova_local</literal> is the name of the LVM group you
have created.
</para>
</section>