]> git.proxmox.com Git - ceph.git/blame - ceph/doc/rbd/index.rst
Import ceph 15.2.8
[ceph.git] / ceph / doc / rbd / index.rst
CommitLineData
7c673cae
FG
1===================
2 Ceph Block Device
3===================
4
5.. index:: Ceph Block Device; introduction
6
7A block is a sequence of bytes (for example, a 512-byte block of data).
8Block-based storage interfaces are the most common way to store data with
9rotating media such as hard disks, CDs, floppy disks, and even traditional
109-track tape. The ubiquity of block device interfaces makes a virtual block
11device an ideal candidate to interact with a mass data storage system like Ceph.
12
13Ceph block devices are thin-provisioned, resizable and store data striped over
14multiple OSDs in a Ceph cluster. Ceph block devices leverage
15:abbr:`RADOS (Reliable Autonomic Distributed Object Store)` capabilities
181888fb
FG
16such as snapshotting, replication and consistency. Ceph's
17:abbr:`RADOS (Reliable Autonomic Distributed Object Store)` Block Devices (RBD)
7c673cae
FG
18interact with OSDs using kernel modules or the ``librbd`` library.
19
f91f0fd5
TL
20.. ditaa::
21
22 +------------------------+ +------------------------+
7c673cae
FG
23 | Kernel Module | | librbd |
24 +------------------------+-+------------------------+
25 | RADOS Protocol |
26 +------------------------+-+------------------------+
27 | OSDs | | Monitors |
28 +------------------------+ +------------------------+
29
181888fb 30.. note:: Kernel modules can use Linux page caching. For ``librbd``-based
7c673cae
FG
31 applications, Ceph supports `RBD Caching`_.
32
33Ceph's block devices deliver high performance with infinite scalability to
34`kernel modules`_, or to :abbr:`KVMs (kernel virtual machines)` such as `QEMU`_, and
35cloud-based computing systems like `OpenStack`_ and `CloudStack`_ that rely on
36libvirt and QEMU to integrate with Ceph block devices. You can use the same cluster
91327a77 37to operate the :ref:`Ceph RADOS Gateway <object-gateway>`, the
9f95a23c 38:ref:`Ceph File System <ceph-file-system>`, and Ceph block devices simultaneously.
7c673cae 39
181888fb 40.. important:: To use Ceph Block Devices, you must have access to a running
7c673cae
FG
41 Ceph cluster.
42
43.. toctree::
9f95a23c
TL
44 :maxdepth: 1
45
46 Basic Commands <rados-rbd-cmds>
47
48.. toctree::
49 :maxdepth: 2
50
51 Operations <rbd-operations>
52
53.. toctree::
54 :maxdepth: 2
55
56 Integrations <rbd-integrations>
d2e6a577
FG
57
58.. toctree::
59 :maxdepth: 2
60
61 Manpages <man/index>
62
63.. toctree::
64 :maxdepth: 2
65
66 APIs <api/index>
67
91327a77
AA
68.. _RBD Caching: ./rbd-config-ref/
69.. _kernel modules: ./rbd-ko/
70.. _QEMU: ./qemu-rbd/
71.. _OpenStack: ./rbd-openstack
72.. _CloudStack: ./rbd-cloudstack