]> git.proxmox.com Git - pve-docs.git/blame - pveceph.adoc
ceph: Extend recommendation in TIP box
[pve-docs.git] / pveceph.adoc
CommitLineData
80c0adcb 1[[chapter_pveceph]]
0840a663 2ifdef::manvolnum[]
b2f242ab
DM
3pveceph(1)
4==========
404a158e 5:pve-toplevel:
0840a663
DM
6
7NAME
8----
9
21394e70 10pveceph - Manage Ceph Services on Proxmox VE Nodes
0840a663 11
49a5e11c 12SYNOPSIS
0840a663
DM
13--------
14
15include::pveceph.1-synopsis.adoc[]
16
17DESCRIPTION
18-----------
19endif::manvolnum[]
0840a663 20ifndef::manvolnum[]
fe93f133
DM
21Manage Ceph Services on Proxmox VE Nodes
22========================================
49d3ad91 23:pve-toplevel:
0840a663
DM
24endif::manvolnum[]
25
1ff5e4e8 26[thumbnail="screenshot/gui-ceph-status.png"]
8997dd6e 27
a474ca1f
AA
28{pve} unifies your compute and storage systems, i.e. you can use the same
29physical nodes within a cluster for both computing (processing VMs and
30containers) and replicated storage. The traditional silos of compute and
31storage resources can be wrapped up into a single hyper-converged appliance.
32Separate storage networks (SANs) and connections via network attached storages
33(NAS) disappear. With the integration of Ceph, an open source software-defined
34storage platform, {pve} has the ability to run and manage Ceph storage directly
35on the hypervisor nodes.
c994e4e5
DM
36
37Ceph is a distributed object store and file system designed to provide
1d54c3b4
AA
38excellent performance, reliability and scalability.
39
04ba9b24
TL
40.Some advantages of Ceph on {pve} are:
41- Easy setup and management with CLI and GUI support
a474ca1f
AA
42- Thin provisioning
43- Snapshots support
44- Self healing
a474ca1f
AA
45- Scalable to the exabyte level
46- Setup pools with different performance and redundancy characteristics
47- Data is replicated, making it fault tolerant
48- Runs on economical commodity hardware
49- No need for hardware RAID controllers
a474ca1f
AA
50- Open source
51
1d54c3b4
AA
52For small to mid sized deployments, it is possible to install a Ceph server for
53RADOS Block Devices (RBD) directly on your {pve} cluster nodes, see
c994e4e5
DM
54xref:ceph_rados_block_devices[Ceph RADOS Block Devices (RBD)]. Recent
55hardware has plenty of CPU power and RAM, so running storage services
56and VMs on the same node is possible.
21394e70
DM
57
58To simplify management, we provide 'pveceph' - a tool to install and
59manage {ceph} services on {pve} nodes.
60
127ca409 61.Ceph consists of a couple of Daemons footnote:[Ceph intro http://docs.ceph.com/docs/luminous/start/intro/], for use as a RBD storage:
1d54c3b4
AA
62- Ceph Monitor (ceph-mon)
63- Ceph Manager (ceph-mgr)
64- Ceph OSD (ceph-osd; Object Storage Daemon)
65
477fbcfb
AA
66TIP: We highly recommend to get familiar with Ceph's architecture
67footnote:[Ceph architecture http://docs.ceph.com/docs/luminous/architecture/]
68and vocabulary
69footnote:[Ceph glossary http://docs.ceph.com/docs/luminous/glossary].
1d54c3b4 70
21394e70
DM
71
72Precondition
73------------
74
c994e4e5
DM
75To build a Proxmox Ceph Cluster there should be at least three (preferably)
76identical servers for the setup.
21394e70 77
a474ca1f
AA
78A 10Gb network, exclusively used for Ceph, is recommended. A meshed network
79setup is also an option if there are no 10Gb switches available, see our wiki
80article footnote:[Full Mesh Network for Ceph {webwiki-url}Full_Mesh_Network_for_Ceph_Server] .
21394e70
DM
81
82Check also the recommendations from
1d54c3b4 83http://docs.ceph.com/docs/luminous/start/hardware-recommendations/[Ceph's website].
21394e70 84
a474ca1f 85.Avoid RAID
86be506d 86As Ceph handles data object redundancy and multiple parallel writes to disks
c78756be 87(OSDs) on its own, using a RAID controller normally doesn’t improve
86be506d
TL
88performance or availability. On the contrary, Ceph is designed to handle whole
89disks on it's own, without any abstraction in between. RAID controller are not
90designed for the Ceph use case and may complicate things and sometimes even
91reduce performance, as their write and caching algorithms may interfere with
92the ones from Ceph.
a474ca1f
AA
93
94WARNING: Avoid RAID controller, use host bus adapter (HBA) instead.
95
21394e70 96
58f95dd7 97[[pve_ceph_install]]
21394e70
DM
98Installation of Ceph Packages
99-----------------------------
100
101On each node run the installation script as follows:
102
103[source,bash]
104----
19920184 105pveceph install
21394e70
DM
106----
107
108This sets up an `apt` package repository in
109`/etc/apt/sources.list.d/ceph.list` and installs the required software.
110
111
112Creating initial Ceph configuration
113-----------------------------------
114
1ff5e4e8 115[thumbnail="screenshot/gui-ceph-config.png"]
8997dd6e 116
21394e70
DM
117After installation of packages, you need to create an initial Ceph
118configuration on just one node, based on your network (`10.10.10.0/24`
119in the following example) dedicated for Ceph:
120
121[source,bash]
122----
123pveceph init --network 10.10.10.0/24
124----
125
a474ca1f 126This creates an initial configuration at `/etc/pve/ceph.conf`. That file is
c994e4e5 127automatically distributed to all {pve} nodes by using
21394e70
DM
128xref:chapter_pmxcfs[pmxcfs]. The command also creates a symbolic link
129from `/etc/ceph/ceph.conf` pointing to that file. So you can simply run
130Ceph commands without the need to specify a configuration file.
131
132
d9a27ee1 133[[pve_ceph_monitors]]
21394e70
DM
134Creating Ceph Monitors
135----------------------
136
1ff5e4e8 137[thumbnail="screenshot/gui-ceph-monitor.png"]
8997dd6e 138
1d54c3b4
AA
139The Ceph Monitor (MON)
140footnote:[Ceph Monitor http://docs.ceph.com/docs/luminous/start/intro/]
a474ca1f
AA
141maintains a master copy of the cluster map. For high availability you need to
142have at least 3 monitors.
1d54c3b4
AA
143
144On each node where you want to place a monitor (three monitors are recommended),
145create it by using the 'Ceph -> Monitor' tab in the GUI or run.
21394e70
DM
146
147
148[source,bash]
149----
150pveceph createmon
151----
152
1d54c3b4
AA
153This will also install the needed Ceph Manager ('ceph-mgr') by default. If you
154do not want to install a manager, specify the '-exclude-manager' option.
155
156
157[[pve_ceph_manager]]
158Creating Ceph Manager
159----------------------
160
a474ca1f 161The Manager daemon runs alongside the monitors, providing an interface for
1d54c3b4
AA
162monitoring the cluster. Since the Ceph luminous release the
163ceph-mgr footnote:[Ceph Manager http://docs.ceph.com/docs/luminous/mgr/] daemon
164is required. During monitor installation the ceph manager will be installed as
165well.
166
167NOTE: It is recommended to install the Ceph Manager on the monitor nodes. For
168high availability install more then one manager.
169
170[source,bash]
171----
172pveceph createmgr
173----
174
21394e70 175
d9a27ee1 176[[pve_ceph_osds]]
21394e70
DM
177Creating Ceph OSDs
178------------------
179
1ff5e4e8 180[thumbnail="screenshot/gui-ceph-osd-status.png"]
8997dd6e 181
21394e70
DM
182via GUI or via CLI as follows:
183
184[source,bash]
185----
186pveceph createosd /dev/sd[X]
187----
188
1d54c3b4
AA
189TIP: We recommend a Ceph cluster size, starting with 12 OSDs, distributed evenly
190among your, at least three nodes (4 OSDs on each node).
191
a474ca1f
AA
192If the disk was used before (eg. ZFS/RAID/OSD), to remove partition table, boot
193sector and any OSD leftover the following commands should be sufficient.
194
195[source,bash]
196----
197dd if=/dev/zero of=/dev/sd[X] bs=1M count=200
198ceph-disk zap /dev/sd[X]
199----
200
201WARNING: The above commands will destroy data on the disk!
1d54c3b4
AA
202
203Ceph Bluestore
204~~~~~~~~~~~~~~
21394e70 205
1d54c3b4
AA
206Starting with the Ceph Kraken release, a new Ceph OSD storage type was
207introduced, the so called Bluestore
a474ca1f
AA
208footnote:[Ceph Bluestore http://ceph.com/community/new-luminous-bluestore/].
209This is the default when creating OSDs in Ceph luminous.
21394e70
DM
210
211[source,bash]
212----
1d54c3b4
AA
213pveceph createosd /dev/sd[X]
214----
215
ee4a0e96 216NOTE: In order to select a disk in the GUI, to be more fail-safe, the disk needs
a474ca1f
AA
217to have a GPT footnoteref:[GPT, GPT partition table
218https://en.wikipedia.org/wiki/GUID_Partition_Table] partition table. You can
219create this with `gdisk /dev/sd(x)`. If there is no GPT, you cannot select the
220disk as DB/WAL.
1d54c3b4
AA
221
222If you want to use a separate DB/WAL device for your OSDs, you can specify it
a474ca1f
AA
223through the '-journal_dev' option. The WAL is placed with the DB, if not
224specified separately.
1d54c3b4
AA
225
226[source,bash]
227----
a474ca1f 228pveceph createosd /dev/sd[X] -journal_dev /dev/sd[Y]
1d54c3b4
AA
229----
230
231NOTE: The DB stores BlueStore’s internal metadata and the WAL is BlueStore’s
ee4a0e96 232internal journal or write-ahead log. It is recommended to use a fast SSD or
1d54c3b4
AA
233NVRAM for better performance.
234
235
236Ceph Filestore
237~~~~~~~~~~~~~
238Till Ceph luminous, Filestore was used as storage type for Ceph OSDs. It can
239still be used and might give better performance in small setups, when backed by
ee4a0e96 240an NVMe SSD or similar.
1d54c3b4
AA
241
242[source,bash]
243----
244pveceph createosd /dev/sd[X] -bluestore 0
245----
246
247NOTE: In order to select a disk in the GUI, the disk needs to have a
248GPT footnoteref:[GPT] partition table. You can
249create this with `gdisk /dev/sd(x)`. If there is no GPT, you cannot select the
250disk as journal. Currently the journal size is fixed to 5 GB.
251
252If you want to use a dedicated SSD journal disk:
253
254[source,bash]
255----
e677b344 256pveceph createosd /dev/sd[X] -journal_dev /dev/sd[Y] -bluestore 0
21394e70
DM
257----
258
259Example: Use /dev/sdf as data disk (4TB) and /dev/sdb is the dedicated SSD
260journal disk.
261
262[source,bash]
263----
e677b344 264pveceph createosd /dev/sdf -journal_dev /dev/sdb -bluestore 0
21394e70
DM
265----
266
267This partitions the disk (data and journal partition), creates
268filesystems and starts the OSD, afterwards it is running and fully
1d54c3b4 269functional.
21394e70 270
1d54c3b4
AA
271NOTE: This command refuses to initialize disk when it detects existing data. So
272if you want to overwrite a disk you should remove existing data first. You can
273do that using: 'ceph-disk zap /dev/sd[X]'
21394e70
DM
274
275You can create OSDs containing both journal and data partitions or you
276can place the journal on a dedicated SSD. Using a SSD journal disk is
1d54c3b4 277highly recommended to achieve good performance.
21394e70
DM
278
279
07fef357 280[[pve_ceph_pools]]
1d54c3b4
AA
281Creating Ceph Pools
282-------------------
21394e70 283
1ff5e4e8 284[thumbnail="screenshot/gui-ceph-pools.png"]
8997dd6e 285
1d54c3b4 286A pool is a logical group for storing objects. It holds **P**lacement
90682f35 287**G**roups (`PG`, `pg_num`), a collection of objects.
1d54c3b4 288
90682f35
TL
289When no options are given, we set a default of **128 PGs**, a **size of 3
290replicas** and a **min_size of 2 replicas** for serving objects in a degraded
291state.
1d54c3b4 292
5a54ef44 293NOTE: The default number of PGs works for 2-5 disks. Ceph throws a
90682f35 294'HEALTH_WARNING' if you have too few or too many PGs in your cluster.
1d54c3b4
AA
295
296It is advised to calculate the PG number depending on your setup, you can find
a474ca1f
AA
297the formula and the PG calculator footnote:[PG calculator
298http://ceph.com/pgcalc/] online. While PGs can be increased later on, they can
299never be decreased.
1d54c3b4
AA
300
301
302You can create pools through command line or on the GUI on each PVE host under
303**Ceph -> Pools**.
304
305[source,bash]
306----
307pveceph createpool <name>
308----
309
310If you would like to automatically get also a storage definition for your pool,
311active the checkbox "Add storages" on the GUI or use the command line option
312'--add_storages' on pool creation.
21394e70 313
1d54c3b4
AA
314Further information on Ceph pool handling can be found in the Ceph pool
315operation footnote:[Ceph pool operation
316http://docs.ceph.com/docs/luminous/rados/operations/pools/]
317manual.
21394e70 318
9fad507d
AA
319Ceph CRUSH & device classes
320---------------------------
321The foundation of Ceph is its algorithm, **C**ontrolled **R**eplication
322**U**nder **S**calable **H**ashing
323(CRUSH footnote:[CRUSH https://ceph.com/wp-content/uploads/2016/08/weil-crush-sc06.pdf]).
324
325CRUSH calculates where to store to and retrieve data from, this has the
326advantage that no central index service is needed. CRUSH works with a map of
327OSDs, buckets (device locations) and rulesets (data replication) for pools.
328
329NOTE: Further information can be found in the Ceph documentation, under the
330section CRUSH map footnote:[CRUSH map http://docs.ceph.com/docs/luminous/rados/operations/crush-map/].
331
332This map can be altered to reflect different replication hierarchies. The object
333replicas can be separated (eg. failure domains), while maintaining the desired
334distribution.
335
336A common use case is to use different classes of disks for different Ceph pools.
337For this reason, Ceph introduced the device classes with luminous, to
338accommodate the need for easy ruleset generation.
339
340The device classes can be seen in the 'ceph osd tree' output. These classes
341represent their own root bucket, which can be seen with the below command.
342
343[source, bash]
344----
345ceph osd crush tree --show-shadow
346----
347
348Example output form the above command:
349
350[source, bash]
351----
352ID CLASS WEIGHT TYPE NAME
353-16 nvme 2.18307 root default~nvme
354-13 nvme 0.72769 host sumi1~nvme
355 12 nvme 0.72769 osd.12
356-14 nvme 0.72769 host sumi2~nvme
357 13 nvme 0.72769 osd.13
358-15 nvme 0.72769 host sumi3~nvme
359 14 nvme 0.72769 osd.14
360 -1 7.70544 root default
361 -3 2.56848 host sumi1
362 12 nvme 0.72769 osd.12
363 -5 2.56848 host sumi2
364 13 nvme 0.72769 osd.13
365 -7 2.56848 host sumi3
366 14 nvme 0.72769 osd.14
367----
368
369To let a pool distribute its objects only on a specific device class, you need
370to create a ruleset with the specific class first.
371
372[source, bash]
373----
374ceph osd crush rule create-replicated <rule-name> <root> <failure-domain> <class>
375----
376
377[frame="none",grid="none", align="left", cols="30%,70%"]
378|===
379|<rule-name>|name of the rule, to connect with a pool (seen in GUI & CLI)
380|<root>|which crush root it should belong to (default ceph root "default")
381|<failure-domain>|at which failure-domain the objects should be distributed (usually host)
382|<class>|what type of OSD backing store to use (eg. nvme, ssd, hdd)
383|===
384
385Once the rule is in the CRUSH map, you can tell a pool to use the ruleset.
386
387[source, bash]
388----
389ceph osd pool set <pool-name> crush_rule <rule-name>
390----
391
392TIP: If the pool already contains objects, all of these have to be moved
393accordingly. Depending on your setup this may introduce a big performance hit on
394your cluster. As an alternative, you can create a new pool and move disks
395separately.
396
397
21394e70
DM
398Ceph Client
399-----------
400
1ff5e4e8 401[thumbnail="screenshot/gui-ceph-log.png"]
8997dd6e 402
21394e70
DM
403You can then configure {pve} to use such pools to store VM or
404Container images. Simply use the GUI too add a new `RBD` storage (see
405section xref:ceph_rados_block_devices[Ceph RADOS Block Devices (RBD)]).
406
1d54c3b4
AA
407You also need to copy the keyring to a predefined location for a external Ceph
408cluster. If Ceph is installed on the Proxmox nodes itself, then this will be
409done automatically.
21394e70
DM
410
411NOTE: The file name needs to be `<storage_id> + `.keyring` - `<storage_id>` is
412the expression after 'rbd:' in `/etc/pve/storage.cfg` which is
413`my-ceph-storage` in the following example:
414
415[source,bash]
416----
417mkdir /etc/pve/priv/ceph
418cp /etc/ceph/ceph.client.admin.keyring /etc/pve/priv/ceph/my-ceph-storage.keyring
419----
0840a663 420
58f95dd7
TL
421[[pveceph_fs]]
422CephFS
423------
424
425Ceph provides also a filesystem running on top of the same object storage as
426RADOS block devices do. A **M**eta**d**ata **S**erver (`MDS`) is used to map
427the RADOS backed objects to files and directories, allowing to provide a
428POSIX-compliant replicated filesystem. This allows one to have a clustered
429highly available shared filesystem in an easy way if ceph is already used. Its
430Metadata Servers guarantee that files get balanced out over the whole Ceph
431cluster, this way even high load will not overload a single host, which can be
d180eb39 432an issue with traditional shared filesystem approaches, like `NFS`, for
58f95dd7
TL
433example.
434
435{pve} supports both, using an existing xref:storage_cephfs[CephFS as storage])
436to save backups, ISO files or container templates and creating a
437hyper-converged CephFS itself.
438
439
440[[pveceph_fs_mds]]
441Metadata Server (MDS)
442~~~~~~~~~~~~~~~~~~~~~
443
444CephFS needs at least one Metadata Server to be configured and running to be
445able to work. One can simply create one through the {pve} web GUI's `Node ->
446CephFS` panel or on the command line with:
447
448----
449pveceph mds create
450----
451
452Multiple metadata servers can be created in a cluster. But with the default
453settings only one can be active at any time. If an MDS, or its node, becomes
454unresponsive (or crashes), another `standby` MDS will get promoted to `active`.
455One can speed up the hand-over between the active and a standby MDS up by using
456the 'hotstandby' parameter option on create, or if you have already created it
457you may set/add:
458
459----
460mds standby replay = true
461----
462
463in the ceph.conf respective MDS section. With this enabled, this specific MDS
464will always poll the active one, so that it can take over faster as it is in a
3580eb13 465`warm` state. But naturally, the active polling will cause some additional
58f95dd7
TL
466performance impact on your system and active `MDS`.
467
468Multiple Active MDS
469^^^^^^^^^^^^^^^^^^^
470
471Since Luminous (12.2.x) you can also have multiple active metadata servers
472running, but this is normally only useful for a high count on parallel clients,
473as else the `MDS` seldom is the bottleneck. If you want to set this up please
474refer to the ceph documentation. footnote:[Configuring multiple active MDS
127ca409 475daemons http://docs.ceph.com/docs/luminous/cephfs/multimds/]
58f95dd7
TL
476
477[[pveceph_fs_create]]
478Create a CephFS
479~~~~~~~~~~~~~~~
480
481With {pve}'s CephFS integration into you can create a CephFS easily over the
482Web GUI, the CLI or an external API interface. Some prerequisites are required
483for this to work:
484
485.Prerequisites for a successful CephFS setup:
486- xref:pve_ceph_install[Install Ceph packages], if this was already done some
487 time ago you might want to rerun it on an up to date system to ensure that
488 also all CephFS related packages get installed.
489- xref:pve_ceph_monitors[Setup Monitors]
490- xref:pve_ceph_monitors[Setup your OSDs]
491- xref:pveceph_fs_mds[Setup at least one MDS]
492
493After this got all checked and done you can simply create a CephFS through
494either the Web GUI's `Node -> CephFS` panel or the command line tool `pveceph`,
495for example with:
496
497----
498pveceph fs create --pg_num 128 --add-storage
499----
500
501This creates a CephFS named `'cephfs'' using a pool for its data named
502`'cephfs_data'' with `128` placement groups and a pool for its metadata named
503`'cephfs_metadata'' with one quarter of the data pools placement groups (`32`).
504Check the xref:pve_ceph_pools[{pve} managed Ceph pool chapter] or visit the
505Ceph documentation for more information regarding a fitting placement group
506number (`pg_num`) for your setup footnote:[Ceph Placement Groups
127ca409 507http://docs.ceph.com/docs/luminous/rados/operations/placement-groups/].
58f95dd7
TL
508Additionally, the `'--add-storage'' parameter will add the CephFS to the {pve}
509storage configuration after it was created successfully.
510
511Destroy CephFS
512~~~~~~~~~~~~~~
513
fa9b4ee1 514WARNING: Destroying a CephFS will render all its data unusable, this cannot be
58f95dd7
TL
515undone!
516
517If you really want to destroy an existing CephFS you first need to stop, or
518destroy, all metadata server (`M̀DS`). You can destroy them either over the Web
519GUI or the command line interface, with:
520
521----
522pveceph mds destroy NAME
523----
524on each {pve} node hosting a MDS daemon.
525
526Then, you can remove (destroy) CephFS by issuing a:
527
528----
de2f8225 529ceph fs rm NAME --yes-i-really-mean-it
58f95dd7
TL
530----
531on a single node hosting Ceph. After this you may want to remove the created
532data and metadata pools, this can be done either over the Web GUI or the CLI
533with:
534
535----
536pveceph pool destroy NAME
537----
0840a663
DM
538
539ifdef::manvolnum[]
540include::pve-copyright.adoc[]
541endif::manvolnum[]