]> git.proxmox.com Git - ceph.git/blame - ceph/doc/start/intro.rst
Import ceph 15.2.8
[ceph.git] / ceph / doc / start / intro.rst
CommitLineData
7c673cae
FG
1===============
2 Intro to Ceph
3===============
4
224ce89b
WB
5Whether you want to provide :term:`Ceph Object Storage` and/or
6:term:`Ceph Block Device` services to :term:`Cloud Platforms`, deploy
9f95a23c 7a :term:`Ceph File System` or use Ceph for another purpose, all
224ce89b
WB
8:term:`Ceph Storage Cluster` deployments begin with setting up each
9:term:`Ceph Node`, your network, and the Ceph Storage Cluster. A Ceph
10Storage Cluster requires at least one Ceph Monitor, Ceph Manager, and
11Ceph OSD (Object Storage Daemon). The Ceph Metadata Server is also
9f95a23c 12required when running Ceph File System clients.
224ce89b 13
f91f0fd5
TL
14.. ditaa::
15
16 +---------------+ +------------+ +------------+ +---------------+
224ce89b
WB
17 | OSDs | | Monitors | | Managers | | MDSs |
18 +---------------+ +------------+ +------------+ +---------------+
19
20- **Monitors**: A :term:`Ceph Monitor` (``ceph-mon``) maintains maps
21 of the cluster state, including the monitor map, manager map, the
9f95a23c
TL
22 OSD map, the MDS map, and the CRUSH map. These maps are critical
23 cluster state required for Ceph daemons to coordinate with each other.
24 Monitors are also responsible for managing authentication between
25 daemons and clients. At least three monitors are normally required
26 for redundancy and high availability.
224ce89b
WB
27
28- **Managers**: A :term:`Ceph Manager` daemon (``ceph-mgr``) is
29 responsible for keeping track of runtime metrics and the current
30 state of the Ceph cluster, including storage utilization, current
31 performance metrics, and system load. The Ceph Manager daemons also
11fdf7f2
TL
32 host python-based modules to manage and expose Ceph cluster
33 information, including a web-based :ref:`mgr-dashboard` and
34 `REST API`_. At least two managers are normally required for high
35 availability.
224ce89b
WB
36
37- **Ceph OSDs**: A :term:`Ceph OSD` (object storage daemon,
38 ``ceph-osd``) stores data, handles data replication, recovery,
39 rebalancing, and provides some monitoring information to Ceph
40 Monitors and Managers by checking other Ceph OSD Daemons for a
41 heartbeat. At least 3 Ceph OSDs are normally required for redundancy
42 and high availability.
43
44- **MDSs**: A :term:`Ceph Metadata Server` (MDS, ``ceph-mds``) stores
9f95a23c 45 metadata on behalf of the :term:`Ceph File System` (i.e., Ceph Block
224ce89b
WB
46 Devices and Ceph Object Storage do not use MDS). Ceph Metadata
47 Servers allow POSIX file system users to execute basic commands (like
48 ``ls``, ``find``, etc.) without placing an enormous burden on the
49 Ceph Storage Cluster.
50
51Ceph stores data as objects within logical storage pools. Using the
52:term:`CRUSH` algorithm, Ceph calculates which placement group should
53contain the object, and further calculates which Ceph OSD Daemon
54should store the placement group. The CRUSH algorithm enables the
55Ceph Storage Cluster to scale, rebalance, and recover dynamically.
56
224ce89b 57.. _REST API: ../../mgr/restful
7c673cae
FG
58
59.. raw:: html
60
61 <style type="text/css">div.body h3{margin:5px 0px 0px 0px;}</style>
62 <table cellpadding="10"><colgroup><col width="50%"><col width="50%"></colgroup><tbody valign="top"><tr><td><h3>Recommendations</h3>
63
64To begin using Ceph in production, you should review our hardware
65recommendations and operating system recommendations.
66
67.. toctree::
68 :maxdepth: 2
69
70 Hardware Recommendations <hardware-recommendations>
71 OS Recommendations <os-recommendations>
72
73
74.. raw:: html
75
76 </td><td><h3>Get Involved</h3>
77
78 You can avail yourself of help or contribute documentation, source
79 code or bugs by getting involved in the Ceph community.
80
81.. toctree::
82 :maxdepth: 2
83
84 get-involved
85 documenting-ceph
86
87.. raw:: html
88
89 </td></tr></tbody></table>