Cinder Ceph

  • By OpenStack Charmers
  • Cloud
Channel Revision Published Runs on
latest/edge 532 28 Mar 2024
Ubuntu 22.04
yoga/stable 527 29 Aug 2023
Ubuntu 22.04 Ubuntu 20.04
zed/stable 513 23 Jan 2023
Ubuntu 22.10 Ubuntu 22.04
xena/stable 517 25 Jan 2023
Ubuntu 20.04
wallaby/stable 515 23 Jan 2023
Ubuntu 20.04
victoria/stable 507 23 Jan 2023
Ubuntu 20.04
ussuri/stable 518 26 Jan 2023
Ubuntu 20.04 Ubuntu 18.04
train/candidate 512 28 Nov 2022
Ubuntu 18.04
train/edge 514 16 Jan 2023
Ubuntu 18.04
stein/candidate 512 28 Nov 2022
Ubuntu 18.04
stein/edge 514 16 Jan 2023
Ubuntu 18.04
rocky/candidate 512 28 Nov 2022
Ubuntu 18.04
rocky/edge 514 16 Jan 2023
Ubuntu 18.04
queens/candidate 512 28 Nov 2022
Ubuntu 18.04
queens/edge 514 16 Jan 2023
Ubuntu 18.04
2024.1/candidate 530 24 Jan 2024
Ubuntu 23.10 Ubuntu 23.04 Ubuntu 22.04
2023.2/stable 528 30 Nov 2023
Ubuntu 23.10 Ubuntu 22.04
2023.1/stable 524 14 Jun 2023
Ubuntu 23.04 Ubuntu 22.10 Ubuntu 22.04
juju deploy cinder-ceph --channel yoga/stable
Show information

Platform:

Ubuntu
22.04 20.04

Overview

Cinder is the OpenStack block storage (volume) service. Ceph is a unified, distributed storage system designed for excellent performance, reliability, and scalability. Ceph-backed Cinder therefore allows for scalability and redundancy for storage volumes. This arrangement is intended for large-scale production deployments.

The cinder-ceph charm provides a Ceph (RBD) storage backend for Cinder and is used in conjunction with the cinder charm and an existing Ceph cluster (via the ceph-mon or the ceph-proxy charms).

Specialised use cases:

  • Through the use of multiple application names (e.g. cinder-ceph-1, cinder-ceph-2), multiple Ceph clusters can be associated with a single Cinder deployment.
  • A variety of storage types can be achieved with a single Ceph cluster by mapping pools with multiple cinder-ceph applications. For instance, different pools could be used for HDD or SSD devices. See option rbd-pool-name below.

Note: There is currently no upgrade path to using the cinder-ceph charm for older deployments that have the cinder and ceph-mon applications related directly. This issue is tracked in bug LP #1727184.

Important: This documentation supports version 3.x of the Juju client. See the OpenStack Charm guide if you are using the 2.9.x client.

Usage

Configuration

To display all configuration option information run juju config <application>. If the application is not deployed then see the charm’s Configure tab in the Charmhub. Finally, the Juju documentation provides general guidance on configuring applications.

Ceph pool type

Ceph storage pools can be configured to ensure data resiliency either through replication or by erasure coding. This charm supports both types via the pool-type configuration option, which can take on the values of ‘replicated’ and ‘erasure-coded’. The default value is ‘replicated’.

For this charm, the pool type will be associated with Cinder volumes.

Note: Erasure-coded pools are supported starting with Ceph Luminous.

Replicated pools

Replicated pools use a simple replication strategy in which each written object is copied, in full, to multiple OSDs within the cluster.

The ceph-osd-replication-count option sets the replica count for any object stored within the ‘cinder-ceph’ rbd pool. Increasing this value increases data resilience at the cost of consuming more real storage in the Ceph cluster. The default value is ‘3’.

Important: The ceph-osd-replication-count option must be set prior to adding the relation to the ceph-mon (or ceph-proxy) application. Otherwise, the pool’s configuration will need to be set by interfacing with the cluster directly.

Erasure coded pools

Erasure coded pools use a technique that allows for the same resiliency as replicated pools, yet reduces the amount of space required. Written data is split into data chunks and error correction chunks, which are both distributed throughout the cluster.

Note: Erasure coded pools require more memory and CPU cycles than replicated pools do.

When using erasure coded pools for Cinder volumes two pools will be created: a replicated pool (for storing RBD metadata) and an erasure coded pool (for storing the data written into the RBD). The ceph-osd-replication-count configuration option only applies to the metadata (replicated) pool.

Erasure coded pools can be configured via options whose names begin with the ec- prefix.

Important: It is strongly recommended to tailor the ec-profile-k and ec-profile-m options to the needs of the given environment. These latter options have default values of ‘1’ and ‘2’ respectively, which result in the same space requirements as those of a replicated pool.

See Ceph Erasure Coding in the OpenStack Charms Deployment Guide for more information.

Ceph BlueStore compression

This charm supports BlueStore inline compression for its associated Ceph storage pool(s). The feature is enabled by assigning a compression mode via the bluestore-compression-mode configuration option. The default behaviour is to disable compression.

The efficiency of compression depends heavily on what type of data is stored in the pool and the charm provides a set of configuration options to fine tune the compression behaviour.

Note: BlueStore compression is supported starting with Ceph Mimic.

Deployment

The cinder-ceph application requires the cinder application and a Ceph cluster to be present.

First configure Cinder to not use a local block device. Then deploy cinder-ceph, and add a relation to both the cinder and ceph-mon applications:

juju config cinder block-device=None
juju deploy cinder-ceph
juju integrate cinder-ceph:storage-backend cinder:storage-backend
juju integrate cinder-ceph:ceph ceph-mon:client

Additionally, when both the nova-compute and cinder-ceph applications are deployed a relation is needed between them:

juju integrate cinder-ceph:ceph-access nova-compute:ceph-access

Documentation

The OpenStack Charms project maintains two documentation guides:

Bugs

Please report bugs on Launchpad.


Help improve this document in the forum (guidelines). Last updated 7 months ago.