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