]> git.proxmox.com Git - ceph.git/blame - ceph/doc/rados/configuration/mon-config-ref.rst
update sources to v12.1.2
[ceph.git] / ceph / doc / rados / configuration / mon-config-ref.rst
CommitLineData
7c673cae
FG
1==========================
2 Monitor Config Reference
3==========================
4
5Understanding how to configure a :term:`Ceph Monitor` is an important part of
6building a reliable :term:`Ceph Storage Cluster`. **All Ceph Storage Clusters
7have at least one monitor**. A monitor configuration usually remains fairly
8consistent, but you can add, remove or replace a monitor in a cluster. See
9`Adding/Removing a Monitor`_ and `Add/Remove a Monitor (ceph-deploy)`_ for
10details.
11
12
13.. index:: Ceph Monitor; Paxos
14
15Background
16==========
17
18Ceph Monitors maintain a "master copy" of the :term:`cluster map`, which means a
19:term:`Ceph Client` can determine the location of all Ceph Monitors, Ceph OSD
20Daemons, and Ceph Metadata Servers just by connecting to one Ceph Monitor and
21retrieving a current cluster map. Before Ceph Clients can read from or write to
22Ceph OSD Daemons or Ceph Metadata Servers, they must connect to a Ceph Monitor
23first. With a current copy of the cluster map and the CRUSH algorithm, a Ceph
24Client can compute the location for any object. The ability to compute object
25locations allows a Ceph Client to talk directly to Ceph OSD Daemons, which is a
26very important aspect of Ceph's high scalability and performance. See
27`Scalability and High Availability`_ for additional details.
28
29The primary role of the Ceph Monitor is to maintain a master copy of the cluster
30map. Ceph Monitors also provide authentication and logging services. Ceph
31Monitors write all changes in the monitor services to a single Paxos instance,
32and Paxos writes the changes to a key/value store for strong consistency. Ceph
33Monitors can query the most recent version of the cluster map during sync
34operations. Ceph Monitors leverage the key/value store's snapshots and iterators
35(using leveldb) to perform store-wide synchronization.
36
37.. ditaa::
38
39 /-------------\ /-------------\
40 | Monitor | Write Changes | Paxos |
41 | cCCC +-------------->+ cCCC |
42 | | | |
43 +-------------+ \------+------/
44 | Auth | |
45 +-------------+ | Write Changes
46 | Log | |
47 +-------------+ v
48 | Monitor Map | /------+------\
49 +-------------+ | Key / Value |
50 | OSD Map | | Store |
51 +-------------+ | cCCC |
52 | PG Map | \------+------/
53 +-------------+ ^
54 | MDS Map | | Read Changes
55 +-------------+ |
56 | cCCC |*---------------------+
57 \-------------/
58
59
60.. deprecated:: version 0.58
61
62In Ceph versions 0.58 and earlier, Ceph Monitors use a Paxos instance for
63each service and store the map as a file.
64
65.. index:: Ceph Monitor; cluster map
66
67Cluster Maps
68------------
69
70The cluster map is a composite of maps, including the monitor map, the OSD map,
71the placement group map and the metadata server map. The cluster map tracks a
72number of important things: which processes are ``in`` the Ceph Storage Cluster;
73which processes that are ``in`` the Ceph Storage Cluster are ``up`` and running
74or ``down``; whether, the placement groups are ``active`` or ``inactive``, and
75``clean`` or in some other state; and, other details that reflect the current
76state of the cluster such as the total amount of storage space, and the amount
77of storage used.
78
79When there is a significant change in the state of the cluster--e.g., a Ceph OSD
80Daemon goes down, a placement group falls into a degraded state, etc.--the
81cluster map gets updated to reflect the current state of the cluster.
82Additionally, the Ceph Monitor also maintains a history of the prior states of
83the cluster. The monitor map, OSD map, placement group map and metadata server
84map each maintain a history of their map versions. We call each version an
85"epoch."
86
87When operating your Ceph Storage Cluster, keeping track of these states is an
88important part of your system administration duties. See `Monitoring a Cluster`_
89and `Monitoring OSDs and PGs`_ for additional details.
90
91.. index:: high availability; quorum
92
93Monitor Quorum
94--------------
95
96Our Configuring ceph section provides a trivial `Ceph configuration file`_ that
97provides for one monitor in the test cluster. A cluster will run fine with a
98single monitor; however, **a single monitor is a single-point-of-failure**. To
99ensure high availability in a production Ceph Storage Cluster, you should run
100Ceph with multiple monitors so that the failure of a single monitor **WILL NOT**
101bring down your entire cluster.
102
103When a Ceph Storage Cluster runs multiple Ceph Monitors for high availability,
104Ceph Monitors use `Paxos`_ to establish consensus about the master cluster map.
105A consensus requires a majority of monitors running to establish a quorum for
106consensus about the cluster map (e.g., 1; 2 out of 3; 3 out of 5; 4 out of 6;
107etc.).
108
31f18b77
FG
109``mon force quorum join``
110
111:Description: Force monitor to join quorum even if it has been previously removed from the map
112:Type: Boolean
113:Default: ``False``
7c673cae
FG
114
115.. index:: Ceph Monitor; consistency
116
117Consistency
118-----------
119
120When you add monitor settings to your Ceph configuration file, you need to be
121aware of some of the architectural aspects of Ceph Monitors. **Ceph imposes
122strict consistency requirements** for a Ceph monitor when discovering another
123Ceph Monitor within the cluster. Whereas, Ceph Clients and other Ceph daemons
124use the Ceph configuration file to discover monitors, monitors discover each
125other using the monitor map (monmap), not the Ceph configuration file.
126
127A Ceph Monitor always refers to the local copy of the monmap when discovering
128other Ceph Monitors in the Ceph Storage Cluster. Using the monmap instead of the
129Ceph configuration file avoids errors that could break the cluster (e.g., typos
130in ``ceph.conf`` when specifying a monitor address or port). Since monitors use
131monmaps for discovery and they share monmaps with clients and other Ceph
132daemons, **the monmap provides monitors with a strict guarantee that their
133consensus is valid.**
134
135Strict consistency also applies to updates to the monmap. As with any other
136updates on the Ceph Monitor, changes to the monmap always run through a
137distributed consensus algorithm called `Paxos`_. The Ceph Monitors must agree on
138each update to the monmap, such as adding or removing a Ceph Monitor, to ensure
139that each monitor in the quorum has the same version of the monmap. Updates to
140the monmap are incremental so that Ceph Monitors have the latest agreed upon
141version, and a set of previous versions. Maintaining a history enables a Ceph
142Monitor that has an older version of the monmap to catch up with the current
143state of the Ceph Storage Cluster.
144
145If Ceph Monitors discovered each other through the Ceph configuration file
146instead of through the monmap, it would introduce additional risks because the
c07f9fc5 147Ceph configuration files are not updated and distributed automatically. Ceph
7c673cae
FG
148Monitors might inadvertently use an older Ceph configuration file, fail to
149recognize a Ceph Monitor, fall out of a quorum, or develop a situation where
c07f9fc5 150`Paxos`_ is not able to determine the current state of the system accurately.
7c673cae
FG
151
152
153.. index:: Ceph Monitor; bootstrapping monitors
154
155Bootstrapping Monitors
156----------------------
157
158In most configuration and deployment cases, tools that deploy Ceph may help
159bootstrap the Ceph Monitors by generating a monitor map for you (e.g.,
160``ceph-deploy``, etc). A Ceph Monitor requires a few explicit
161settings:
162
163- **Filesystem ID**: The ``fsid`` is the unique identifier for your
164 object store. Since you can run multiple clusters on the same
165 hardware, you must specify the unique ID of the object store when
166 bootstrapping a monitor. Deployment tools usually do this for you
167 (e.g., ``ceph-deploy`` can call a tool like ``uuidgen``), but you
168 may specify the ``fsid`` manually too.
169
170- **Monitor ID**: A monitor ID is a unique ID assigned to each monitor within
171 the cluster. It is an alphanumeric value, and by convention the identifier
172 usually follows an alphabetical increment (e.g., ``a``, ``b``, etc.). This
173 can be set in a Ceph configuration file (e.g., ``[mon.a]``, ``[mon.b]``, etc.),
174 by a deployment tool, or using the ``ceph`` commandline.
175
176- **Keys**: The monitor must have secret keys. A deployment tool such as
177 ``ceph-deploy`` usually does this for you, but you may
178 perform this step manually too. See `Monitor Keyrings`_ for details.
179
180For additional details on bootstrapping, see `Bootstrapping a Monitor`_.
181
182.. index:: Ceph Monitor; configuring monitors
183
184Configuring Monitors
185====================
186
187To apply configuration settings to the entire cluster, enter the configuration
188settings under ``[global]``. To apply configuration settings to all monitors in
189your cluster, enter the configuration settings under ``[mon]``. To apply
190configuration settings to specific monitors, specify the monitor instance
191(e.g., ``[mon.a]``). By convention, monitor instance names use alpha notation.
192
193.. code-block:: ini
194
195 [global]
196
197 [mon]
198
199 [mon.a]
200
201 [mon.b]
202
203 [mon.c]
204
205
206Minimum Configuration
207---------------------
208
209The bare minimum monitor settings for a Ceph monitor via the Ceph configuration
210file include a hostname and a monitor address for each monitor. You can configure
211these under ``[mon]`` or under the entry for a specific monitor.
212
213.. code-block:: ini
214
215 [mon]
216 mon host = hostname1,hostname2,hostname3
217 mon addr = 10.0.0.10:6789,10.0.0.11:6789,10.0.0.12:6789
218
219
220.. code-block:: ini
221
222 [mon.a]
223 host = hostname1
224 mon addr = 10.0.0.10:6789
225
226See the `Network Configuration Reference`_ for details.
227
228.. note:: This minimum configuration for monitors assumes that a deployment
229 tool generates the ``fsid`` and the ``mon.`` key for you.
230
231Once you deploy a Ceph cluster, you **SHOULD NOT** change the IP address of
232the monitors. However, if you decide to change the monitor's IP address, you
233must follow a specific procedure. See `Changing a Monitor's IP Address`_ for
234details.
235
236Monitors can also be found by clients using DNS SRV records. See `Monitor lookup through DNS`_ for details.
237
238Cluster ID
239----------
240
241Each Ceph Storage Cluster has a unique identifier (``fsid``). If specified, it
242usually appears under the ``[global]`` section of the configuration file.
243Deployment tools usually generate the ``fsid`` and store it in the monitor map,
244so the value may not appear in a configuration file. The ``fsid`` makes it
245possible to run daemons for multiple clusters on the same hardware.
246
247``fsid``
248
249:Description: The cluster ID. One per cluster.
250:Type: UUID
251:Required: Yes.
252:Default: N/A. May be generated by a deployment tool if not specified.
253
254.. note:: Do not set this value if you use a deployment tool that does
255 it for you.
256
257
258.. index:: Ceph Monitor; initial members
259
260Initial Members
261---------------
262
263We recommend running a production Ceph Storage Cluster with at least three Ceph
264Monitors to ensure high availability. When you run multiple monitors, you may
265specify the initial monitors that must be members of the cluster in order to
266establish a quorum. This may reduce the time it takes for your cluster to come
267online.
268
269.. code-block:: ini
270
271 [mon]
272 mon initial members = a,b,c
273
274
275``mon initial members``
276
277:Description: The IDs of initial monitors in a cluster during startup. If
278 specified, Ceph requires an odd number of monitors to form an
279 initial quorum (e.g., 3).
280
281:Type: String
282:Default: None
283
284.. note:: A *majority* of monitors in your cluster must be able to reach
285 each other in order to establish a quorum. You can decrease the initial
286 number of monitors to establish a quorum with this setting.
287
288.. index:: Ceph Monitor; data path
289
290Data
291----
292
293Ceph provides a default path where Ceph Monitors store data. For optimal
294performance in a production Ceph Storage Cluster, we recommend running Ceph
295Monitors on separate hosts and drives from Ceph OSD Daemons. As leveldb is using
296``mmap()`` for writing the data, Ceph Monitors flush their data from memory to disk
297very often, which can interfere with Ceph OSD Daemon workloads if the data
298store is co-located with the OSD Daemons.
299
300In Ceph versions 0.58 and earlier, Ceph Monitors store their data in files. This
301approach allows users to inspect monitor data with common tools like ``ls``
302and ``cat``. However, it doesn't provide strong consistency.
303
304In Ceph versions 0.59 and later, Ceph Monitors store their data as key/value
305pairs. Ceph Monitors require `ACID`_ transactions. Using a data store prevents
306recovering Ceph Monitors from running corrupted versions through Paxos, and it
307enables multiple modification operations in one single atomic batch, among other
308advantages.
309
310Generally, we do not recommend changing the default data location. If you modify
311the default location, we recommend that you make it uniform across Ceph Monitors
312by setting it in the ``[mon]`` section of the configuration file.
313
314
315``mon data``
316
317:Description: The monitor's data location.
318:Type: String
319:Default: ``/var/lib/ceph/mon/$cluster-$id``
320
321
31f18b77
FG
322``mon data size warn``
323
324:Description: Issue a ``HEALTH_WARN`` in cluster log when the monitor's data
325 store goes over 15GB.
326:Type: Integer
327:Default: 15*1024*1024*1024*
328
329
330``mon data avail warn``
331
332:Description: Issue a ``HEALTH_WARN`` in cluster log when the available disk
333 space of monitor's data store is lower or equal to this
334 percentage.
335:Type: Integer
336:Default: 30
337
338
339``mon data avail crit``
340
341:Description: Issue a ``HEALTH_ERR`` in cluster log when the available disk
342 space of monitor's data store is lower or equal to this
343 percentage.
344:Type: Integer
345:Default: 5
346
347
348``mon warn on cache pools without hit sets``
349
350:Description: Issue a ``HEALTH_WARN`` in cluster log if a cache pool does not
351 have the hitset type set set.
352 See `hit set type <../operations/pools#hit-set-type>`_ for more
353 details.
354:Type: Boolean
355:Default: True
356
357
358``mon warn on crush straw calc version zero``
359
360:Description: Issue a ``HEALTH_WARN`` in cluster log if the CRUSH's
361 ``straw_calc_version`` is zero. See
362 `CRUSH map tunables <../operations/crush-map#tunables>`_ for
363 details.
364:Type: Boolean
365:Default: True
366
367
368``mon warn on legacy crush tunables``
369
370:Description: Issue a ``HEALTH_WARN`` in cluster log if
371 CRUSH tunables are too old (older than ``mon_min_crush_required_version``)
372:Type: Boolean
373:Default: True
374
375
376``mon crush min required version``
377
378:Description: The minimum tunable profile version required by the cluster.
379 See
380 `CRUSH map tunables <../operations/crush-map#tunables>`_ for
381 details.
382:Type: String
383:Default: ``firefly``
384
385
386``mon warn on osd down out interval zero``
387
388:Description: Issue a ``HEALTH_WARN`` in cluster log if
389 ``mon osd down out interval`` is zero. Having this option set to
390 zero on the leader acts much like the ``noout`` flag. It's hard
391 to figure out what's going wrong with clusters witout the
392 ``noout`` flag set but acting like that just the same, so we
393 report a warning in this case.
394:Type: Boolean
395:Default: True
396
397
398``mon cache target full warn ratio``
399
400:Description: Position between pool's ``cache_target_full`` and
401 ``target_max_object`` where we start warning
402:Type: Float
403:Default: ``0.66``
404
405
406``mon health data update interval``
407
408:Description: How often (in seconds) the monitor in quorum shares its health
409 status with its peers. (negative number disables it)
410:Type: Float
411:Default: ``60``
412
413
414``mon health to clog``
415
416:Description: Enable sending health summary to cluster log periodically.
417:Type: Boolean
418:Default: True
419
420
421``mon health to clog tick interval``
422
423:Description: How often (in seconds) the monitor send health summary to cluster
424 log (a non-positive number disables it). If current health summary
425 is empty or identical to the last time, monitor will not send it
426 to cluster log.
427:Type: Integer
428:Default: 3600
429
430
431``mon health to clog interval``
432
433:Description: How often (in seconds) the monitor send health summary to cluster
434 log (a non-positive number disables it). Monitor will always
435 send the summary to cluster log no matter if the summary changes
436 or not.
437:Type: Integer
438:Default: 60
439
440
441
7c673cae
FG
442.. index:: Ceph Storage Cluster; capacity planning, Ceph Monitor; capacity planning
443
444Storage Capacity
445----------------
446
447When a Ceph Storage Cluster gets close to its maximum capacity (i.e., ``mon osd
448full ratio``), Ceph prevents you from writing to or reading from Ceph OSD
449Daemons as a safety measure to prevent data loss. Therefore, letting a
450production Ceph Storage Cluster approach its full ratio is not a good practice,
451because it sacrifices high availability. The default full ratio is ``.95``, or
45295% of capacity. This a very aggressive setting for a test cluster with a small
453number of OSDs.
454
455.. tip:: When monitoring your cluster, be alert to warnings related to the
456 ``nearfull`` ratio. This means that a failure of some OSDs could result
457 in a temporary service disruption if one or more OSDs fails. Consider adding
458 more OSDs to increase storage capacity.
459
460A common scenario for test clusters involves a system administrator removing a
461Ceph OSD Daemon from the Ceph Storage Cluster to watch the cluster rebalance;
462then, removing another Ceph OSD Daemon, and so on until the Ceph Storage Cluster
463eventually reaches the full ratio and locks up. We recommend a bit of capacity
464planning even with a test cluster. Planning enables you to gauge how much spare
465capacity you will need in order to maintain high availability. Ideally, you want
466to plan for a series of Ceph OSD Daemon failures where the cluster can recover
467to an ``active + clean`` state without replacing those Ceph OSD Daemons
468immediately. You can run a cluster in an ``active + degraded`` state, but this
469is not ideal for normal operating conditions.
470
471The following diagram depicts a simplistic Ceph Storage Cluster containing 33
472Ceph Nodes with one Ceph OSD Daemon per host, each Ceph OSD Daemon reading from
473and writing to a 3TB drive. So this exemplary Ceph Storage Cluster has a maximum
474actual capacity of 99TB. With a ``mon osd full ratio`` of ``0.95``, if the Ceph
475Storage Cluster falls to 5TB of remaining capacity, the cluster will not allow
476Ceph Clients to read and write data. So the Ceph Storage Cluster's operating
477capacity is 95TB, not 99TB.
478
479.. ditaa::
480
481 +--------+ +--------+ +--------+ +--------+ +--------+ +--------+
482 | Rack 1 | | Rack 2 | | Rack 3 | | Rack 4 | | Rack 5 | | Rack 6 |
483 | cCCC | | cF00 | | cCCC | | cCCC | | cCCC | | cCCC |
484 +--------+ +--------+ +--------+ +--------+ +--------+ +--------+
485 | OSD 1 | | OSD 7 | | OSD 13 | | OSD 19 | | OSD 25 | | OSD 31 |
486 +--------+ +--------+ +--------+ +--------+ +--------+ +--------+
487 | OSD 2 | | OSD 8 | | OSD 14 | | OSD 20 | | OSD 26 | | OSD 32 |
488 +--------+ +--------+ +--------+ +--------+ +--------+ +--------+
489 | OSD 3 | | OSD 9 | | OSD 15 | | OSD 21 | | OSD 27 | | OSD 33 |
490 +--------+ +--------+ +--------+ +--------+ +--------+ +--------+
491 | OSD 4 | | OSD 10 | | OSD 16 | | OSD 22 | | OSD 28 | | Spare |
492 +--------+ +--------+ +--------+ +--------+ +--------+ +--------+
493 | OSD 5 | | OSD 11 | | OSD 17 | | OSD 23 | | OSD 29 | | Spare |
494 +--------+ +--------+ +--------+ +--------+ +--------+ +--------+
495 | OSD 6 | | OSD 12 | | OSD 18 | | OSD 24 | | OSD 30 | | Spare |
496 +--------+ +--------+ +--------+ +--------+ +--------+ +--------+
497
498It is normal in such a cluster for one or two OSDs to fail. A less frequent but
499reasonable scenario involves a rack's router or power supply failing, which
500brings down multiple OSDs simultaneously (e.g., OSDs 7-12). In such a scenario,
501you should still strive for a cluster that can remain operational and achieve an
502``active + clean`` state--even if that means adding a few hosts with additional
503OSDs in short order. If your capacity utilization is too high, you may not lose
504data, but you could still sacrifice data availability while resolving an outage
505within a failure domain if capacity utilization of the cluster exceeds the full
506ratio. For this reason, we recommend at least some rough capacity planning.
507
508Identify two numbers for your cluster:
509
510#. The number of OSDs.
511#. The total capacity of the cluster
512
513If you divide the total capacity of your cluster by the number of OSDs in your
514cluster, you will find the mean average capacity of an OSD within your cluster.
515Consider multiplying that number by the number of OSDs you expect will fail
516simultaneously during normal operations (a relatively small number). Finally
517multiply the capacity of the cluster by the full ratio to arrive at a maximum
518operating capacity; then, subtract the number of amount of data from the OSDs
519you expect to fail to arrive at a reasonable full ratio. Repeat the foregoing
520process with a higher number of OSD failures (e.g., a rack of OSDs) to arrive at
521a reasonable number for a near full ratio.
522
523.. code-block:: ini
524
525 [global]
526
527 mon osd full ratio = .80
528 mon osd backfillfull ratio = .75
529 mon osd nearfull ratio = .70
530
531
532``mon osd full ratio``
533
534:Description: The percentage of disk space used before an OSD is
535 considered ``full``.
536
537:Type: Float
538:Default: ``.95``
539
540
541``mon osd backfillfull ratio``
542
543:Description: The percentage of disk space used before an OSD is
544 considered too ``full`` to backfill.
545
546:Type: Float
547:Default: ``.90``
548
549
550``mon osd nearfull ratio``
551
552:Description: The percentage of disk space used before an OSD is
553 considered ``nearfull``.
554
555:Type: Float
556:Default: ``.85``
557
558
559.. tip:: If some OSDs are nearfull, but others have plenty of capacity, you
560 may have a problem with the CRUSH weight for the nearfull OSDs.
561
562.. index:: heartbeat
563
564Heartbeat
565---------
566
567Ceph monitors know about the cluster by requiring reports from each OSD, and by
568receiving reports from OSDs about the status of their neighboring OSDs. Ceph
569provides reasonable default settings for monitor/OSD interaction; however, you
570may modify them as needed. See `Monitor/OSD Interaction`_ for details.
571
572
573.. index:: Ceph Monitor; leader, Ceph Monitor; provider, Ceph Monitor; requester, Ceph Monitor; synchronization
574
575Monitor Store Synchronization
576-----------------------------
577
578When you run a production cluster with multiple monitors (recommended), each
579monitor checks to see if a neighboring monitor has a more recent version of the
580cluster map (e.g., a map in a neighboring monitor with one or more epoch numbers
581higher than the most current epoch in the map of the instant monitor).
582Periodically, one monitor in the cluster may fall behind the other monitors to
583the point where it must leave the quorum, synchronize to retrieve the most
584current information about the cluster, and then rejoin the quorum. For the
585purposes of synchronization, monitors may assume one of three roles:
586
587#. **Leader**: The `Leader` is the first monitor to achieve the most recent
588 Paxos version of the cluster map.
589
590#. **Provider**: The `Provider` is a monitor that has the most recent version
591 of the cluster map, but wasn't the first to achieve the most recent version.
592
593#. **Requester:** A `Requester` is a monitor that has fallen behind the leader
594 and must synchronize in order to retrieve the most recent information about
595 the cluster before it can rejoin the quorum.
596
597These roles enable a leader to delegate synchronization duties to a provider,
598which prevents synchronization requests from overloading the leader--improving
599performance. In the following diagram, the requester has learned that it has
600fallen behind the other monitors. The requester asks the leader to synchronize,
601and the leader tells the requester to synchronize with a provider.
602
603
604.. ditaa:: +-----------+ +---------+ +----------+
605 | Requester | | Leader | | Provider |
606 +-----------+ +---------+ +----------+
607 | | |
608 | | |
609 | Ask to Synchronize | |
610 |------------------->| |
611 | | |
612 |<-------------------| |
613 | Tell Requester to | |
614 | Sync with Provider | |
615 | | |
616 | Synchronize |
617 |--------------------+-------------------->|
618 | | |
619 |<-------------------+---------------------|
620 | Send Chunk to Requester |
621 | (repeat as necessary) |
622 | Requester Acks Chuck to Provider |
623 |--------------------+-------------------->|
624 | |
625 | Sync Complete |
626 | Notification |
627 |------------------->|
628 | |
629 |<-------------------|
630 | Ack |
631 | |
632
633
634Synchronization always occurs when a new monitor joins the cluster. During
635runtime operations, monitors may receive updates to the cluster map at different
636times. This means the leader and provider roles may migrate from one monitor to
637another. If this happens while synchronizing (e.g., a provider falls behind the
638leader), the provider can terminate synchronization with a requester.
639
640Once synchronization is complete, Ceph requires trimming across the cluster.
641Trimming requires that the placement groups are ``active + clean``.
642
643
644``mon sync trim timeout``
645
646:Description:
647:Type: Double
648:Default: ``30.0``
649
650
651``mon sync heartbeat timeout``
652
653:Description:
654:Type: Double
655:Default: ``30.0``
656
657
658``mon sync heartbeat interval``
659
660:Description:
661:Type: Double
662:Default: ``5.0``
663
664
665``mon sync backoff timeout``
666
667:Description:
668:Type: Double
669:Default: ``30.0``
670
671
672``mon sync timeout``
673
31f18b77
FG
674:Description: Number of seconds the monitor will wait for the next update
675 message from its sync provider before it gives up and bootstrap
676 again.
7c673cae
FG
677:Type: Double
678:Default: ``30.0``
679
680
681``mon sync max retries``
682
683:Description:
684:Type: Integer
685:Default: ``5``
686
687
688``mon sync max payload size``
689
31f18b77 690:Description: The maximum size for a sync payload (in bytes).
7c673cae
FG
691:Type: 32-bit Integer
692:Default: ``1045676``
693
694
31f18b77 695``paxos max join drift``
7c673cae 696
31f18b77
FG
697:Description: The maximum Paxos iterations before we must first sync the
698 monitor data stores. When a monitor finds that its peer is too
699 far ahead of it, it will first sync with data stores before moving
700 on.
701:Type: Integer
702:Default: ``10``
7c673cae 703
31f18b77 704``paxos stash full interval``
7c673cae 705
31f18b77
FG
706:Description: How often (in commits) to stash a full copy of the PaxosService state.
707 Current this setting only affects ``mds``, ``mon``, ``auth`` and ``mgr``
708 PaxosServices.
709:Type: Integer
710:Default: 25
7c673cae
FG
711
712``paxos propose interval``
713
714:Description: Gather updates for this time interval before proposing
31f18b77 715 a map update.
7c673cae
FG
716:Type: Double
717:Default: ``1.0``
718
719
31f18b77
FG
720``paxos min``
721
722:Description: The minimum number of paxos states to keep around
723:Type: Integer
724:Default: 500
725
726
7c673cae
FG
727``paxos min wait``
728
729:Description: The minimum amount of time to gather updates after a period of
730 inactivity.
7c673cae
FG
731:Type: Double
732:Default: ``0.05``
733
734
31f18b77
FG
735``paxos trim min``
736
737:Description: Number of extra proposals tolerated before trimming
738:Type: Integer
739:Default: 250
740
741
742``paxos trim max``
743
744:Description: The maximum number of extra proposals to trim at a time
745:Type: Integer
746:Default: 500
747
748
749``paxos service trim min``
750
751:Description: The minimum amount of versions to trigger a trim (0 disables it)
752:Type: Integer
753:Default: 250
754
755
756``paxos service trim max``
757
758:Description: The maximum amount of versions to trim during a single proposal (0 disables it)
759:Type: Integer
760:Default: 500
761
762
763``mon max log epochs``
764
765:Description: The maximum amount of log epochs to trim during a single proposal
766:Type: Integer
767:Default: 500
768
769
770``mon max pgmap epochs``
771
772:Description: The maximum amount of pgmap epochs to trim during a single proposal
773:Type: Integer
774:Default: 500
775
776
777``mon mds force trim to``
778
779:Description: Force monitor to trim mdsmaps to this point (0 disables it.
780 dangerous, use with care)
781:Type: Integer
782:Default: 0
783
784
785``mon osd force trim to``
786
787:Description: Force monitor to trim osdmaps to this point, even if there is
788 PGs not clean at the specified epoch (0 disables it. dangerous,
789 use with care)
790:Type: Integer
791:Default: 0
792
793``mon osd cache size``
794
795:Description: The size of osdmaps cache, not to rely on underlying store's cache
796:Type: Integer
797:Default: 10
798
799
800``mon election timeout``
801
802:Description: On election proposer, maximum waiting time for all ACKs in seconds.
803:Type: Float
804:Default: ``5``
805
806
7c673cae
FG
807``mon lease``
808
809:Description: The length (in seconds) of the lease on the monitor's versions.
810:Type: Float
811:Default: ``5``
812
813
31f18b77 814``mon lease renew interval factor``
7c673cae 815
31f18b77
FG
816:Description: ``mon lease`` \* ``mon lease renew interval factor`` will be the
817 interval for the Leader to renew the other monitor's leases. The
818 factor should be less than ``1.0``.
7c673cae 819:Type: Float
31f18b77 820:Default: ``0.6``
7c673cae
FG
821
822
31f18b77 823``mon lease ack timeout factor``
7c673cae 824
31f18b77
FG
825:Description: The Leader will wait ``mon lease`` \* ``mon lease ack timeout factor``
826 for the Providers to acknowledge the lease extension.
7c673cae 827:Type: Float
31f18b77
FG
828:Default: ``2.0``
829
830
831``mon accept timeout factor``
832
833:Description: The Leader will wait ``mon lease`` \* ``mon accept timeout factor``
834 for the Requester(s) to accept a Paxos update. It is also used
835 during the Paxos recovery phase for similar purposes.
836:Type: Float
837:Default: ``2.0``
7c673cae
FG
838
839
840``mon min osdmap epochs``
841
842:Description: Minimum number of OSD map epochs to keep at all times.
843:Type: 32-bit Integer
844:Default: ``500``
845
846
847``mon max pgmap epochs``
848
849:Description: Maximum number of PG map epochs the monitor should keep.
850:Type: 32-bit Integer
851:Default: ``500``
852
853
854``mon max log epochs``
855
856:Description: Maximum number of Log epochs the monitor should keep.
857:Type: 32-bit Integer
858:Default: ``500``
859
860
861
7c673cae
FG
862.. index:: Ceph Monitor; clock
863
864Clock
865-----
866
867Ceph daemons pass critical messages to each other, which must be processed
868before daemons reach a timeout threshold. If the clocks in Ceph monitors
869are not synchronized, it can lead to a number of anomalies. For example:
870
871- Daemons ignoring received messages (e.g., timestamps outdated)
872- Timeouts triggered too soon/late when a message wasn't received in time.
873
31f18b77 874See `Monitor Store Synchronization`_ for details.
7c673cae
FG
875
876
877.. tip:: You SHOULD install NTP on your Ceph monitor hosts to
878 ensure that the monitor cluster operates with synchronized clocks.
879
c07f9fc5 880Clock drift may still be noticeable with NTP even though the discrepancy is not
7c673cae
FG
881yet harmful. Ceph's clock drift / clock skew warnings may get triggered even
882though NTP maintains a reasonable level of synchronization. Increasing your
883clock drift may be tolerable under such circumstances; however, a number of
884factors such as workload, network latency, configuring overrides to default
885timeouts and the `Monitor Store Synchronization`_ settings may influence
886the level of acceptable clock drift without compromising Paxos guarantees.
887
888Ceph provides the following tunable options to allow you to find
889acceptable values.
890
891
892``clock offset``
893
894:Description: How much to offset the system clock. See ``Clock.cc`` for details.
895:Type: Double
896:Default: ``0``
897
898
899.. deprecated:: 0.58
900
901``mon tick interval``
902
903:Description: A monitor's tick interval in seconds.
904:Type: 32-bit Integer
905:Default: ``5``
906
907
908``mon clock drift allowed``
909
910:Description: The clock drift in seconds allowed between monitors.
911:Type: Float
912:Default: ``.050``
913
914
915``mon clock drift warn backoff``
916
917:Description: Exponential backoff for clock drift warnings
918:Type: Float
919:Default: ``5``
920
921
922``mon timecheck interval``
923
924:Description: The time check interval (clock drift check) in seconds
31f18b77 925 for the Leader.
7c673cae
FG
926
927:Type: Float
928:Default: ``300.0``
929
930
31f18b77
FG
931``mon timecheck skew interval``
932
933:Description: The time check interval (clock drift check) in seconds when in
934 presence of a skew in seconds for the Leader.
935:Type: Float
936:Default: ``30.0``
937
7c673cae
FG
938
939Client
940------
941
942``mon client hunt interval``
943
944:Description: The client will try a new monitor every ``N`` seconds until it
945 establishes a connection.
946
947:Type: Double
948:Default: ``3.0``
949
950
951``mon client ping interval``
952
953:Description: The client will ping the monitor every ``N`` seconds.
954:Type: Double
955:Default: ``10.0``
956
957
958``mon client max log entries per message``
959
960:Description: The maximum number of log entries a monitor will generate
961 per client message.
962
963:Type: Integer
964:Default: ``1000``
965
966
967``mon client bytes``
968
969:Description: The amount of client message data allowed in memory (in bytes).
970:Type: 64-bit Integer Unsigned
971:Default: ``100ul << 20``
972
973
974Pool settings
975=============
976Since version v0.94 there is support for pool flags which allow or disallow changes to be made to pools.
977
978Monitors can also disallow removal of pools if configured that way.
979
980``mon allow pool delete``
981
982:Description: If the monitors should allow pools to be removed. Regardless of what the pool flags say.
983:Type: Boolean
984:Default: ``false``
985
986``osd pool default flag hashpspool``
987
988:Description: Set the hashpspool flag on new pools
989:Type: Boolean
990:Default: ``true``
991
992``osd pool default flag nodelete``
993
994:Description: Set the nodelete flag on new pools. Prevents allow pool removal with this flag in any way.
995:Type: Boolean
996:Default: ``false``
997
998``osd pool default flag nopgchange``
999
1000:Description: Set the nopgchange flag on new pools. Does not allow the number of PGs to be changed for a pool.
1001:Type: Boolean
1002:Default: ``false``
1003
1004``osd pool default flag nosizechange``
1005
1006:Description: Set the nosizechange flag on new pools. Does not allow the size to be changed of pool.
1007:Type: Boolean
1008:Default: ``false``
1009
1010For more information about the pool flags see `Pool values`_.
1011
1012Miscellaneous
1013=============
1014
1015
1016``mon max osd``
1017
1018:Description: The maximum number of OSDs allowed in the cluster.
1019:Type: 32-bit Integer
1020:Default: ``10000``
1021
1022``mon globalid prealloc``
1023
1024:Description: The number of global IDs to pre-allocate for clients and daemons in the cluster.
1025:Type: 32-bit Integer
1026:Default: ``100``
1027
7c673cae
FG
1028``mon subscribe interval``
1029
1030:Description: The refresh interval (in seconds) for subscriptions. The
1031 subscription mechanism enables obtaining the cluster maps
1032 and log information.
1033
1034:Type: Double
1035:Default: ``300``
1036
1037
1038``mon stat smooth intervals``
1039
1040:Description: Ceph will smooth statistics over the last ``N`` PG maps.
1041:Type: Integer
1042:Default: ``2``
1043
1044
1045``mon probe timeout``
1046
1047:Description: Number of seconds the monitor will wait to find peers before bootstrapping.
1048:Type: Double
1049:Default: ``2.0``
1050
1051
1052``mon daemon bytes``
1053
1054:Description: The message memory cap for metadata server and OSD messages (in bytes).
1055:Type: 64-bit Integer Unsigned
1056:Default: ``400ul << 20``
1057
1058
1059``mon max log entries per event``
1060
1061:Description: The maximum number of log entries per event.
1062:Type: Integer
1063:Default: ``4096``
1064
1065
1066``mon osd prime pg temp``
1067
1068:Description: Enables or disable priming the PGMap with the previous OSDs when an out
1069 OSD comes back into the cluster. With the ``true`` setting the clients
1070 will continue to use the previous OSDs until the newly in OSDs as that
1071 PG peered.
1072:Type: Boolean
1073:Default: ``true``
1074
1075
1076``mon osd prime pg temp max time``
1077
1078:Description: How much time in seconds the monitor should spend trying to prime the
1079 PGMap when an out OSD comes back into the cluster.
1080:Type: Float
1081:Default: ``0.5``
1082
1083
31f18b77
FG
1084``mon osd prime pg temp max time estimate``
1085
1086:Description: Maximum estimate of time spent on each PG before we prime all PGs
1087 in parallel.
1088:Type: Float
1089:Default: ``0.25``
1090
1091
1092``mon osd allow primary affinity``
1093
1094:Description: allow ``primary_affinity`` to be set in the osdmap.
1095:Type: Boolean
1096:Default: False
1097
1098
1099``mon osd pool ec fast read``
1100
1101:Description: Whether turn on fast read on the pool or not. It will be used as
1102 the default setting of newly created erasure pools if ``fast_read``
1103 is not specified at create time.
1104:Type: Boolean
1105:Default: False
1106
1107
1108``mon mds skip sanity``
1109
1110:Description: Skip safety assertions on FSMap (in case of bugs where we want to
1111 continue anyway). Monitor terminates if the FSMap sanity check
1112 fails, but we can disable it by enabling this option.
1113:Type: Boolean
1114:Default: False
1115
1116
1117``mon max mdsmap epochs``
1118
1119:Description: The maximum amount of mdsmap epochs to trim during a single proposal.
1120:Type: Integer
1121:Default: 500
1122
1123
1124``mon config key max entry size``
1125
1126:Description: The maximum size of config-key entry (in bytes)
1127:Type: Integer
1128:Default: 4096
1129
1130
1131``mon scrub interval``
1132
1133:Description: How often (in seconds) the monitor scrub its store by comparing
1134 the stored checksums with the computed ones of all the stored
1135 keys.
1136:Type: Integer
1137:Default: 3600*24
1138
1139
1140``mon scrub max keys``
1141
1142:Description: The maximum number of keys to scrub each time.
1143:Type: Integer
1144:Default: 100
1145
1146
1147``mon compact on start``
1148
1149:Description: Compact the database used as Ceph Monitor store on
1150 ``ceph-mon`` start. A manual compaction helps to shrink the
1151 monitor database and improve the performance of it if the regular
1152 compaction fails to work.
1153:Type: Boolean
1154:Default: False
1155
1156
1157``mon compact on bootstrap``
1158
1159:Description: Compact the database used as Ceph Monitor store on
1160 on bootstrap. Monitor starts probing each other for creating
1161 a quorum after bootstrap. If it times out before joining the
1162 quorum, it will start over and bootstrap itself again.
1163:Type: Boolean
1164:Default: False
1165
1166
1167``mon compact on trim``
1168
1169:Description: Compact a certain prefix (including paxos) when we trim its old states.
1170:Type: Boolean
1171:Default: True
1172
1173
1174``mon cpu threads``
1175
1176:Description: Number of threads for performing CPU intensive work on monitor.
1177:Type: Boolean
1178:Default: True
1179
1180
1181``mon osd mapping pgs per chunk``
1182
1183:Description: We calculate the mapping from placement group to OSDs in chunks.
1184 This option specifies the number of placement groups per chunk.
1185:Type: Integer
1186:Default: 4096
1187
1188
1189``mon osd max split count``
1190
1191:Description: Largest number of PGs per "involved" OSD to let split create.
1192 When we increase the ``pg_num`` of a pool, the placement groups
1193 will be splitted on all OSDs serving that pool. We want to avoid
1194 extreme multipliers on PG splits.
1195:Type: Integer
1196:Default: 300
1197
1198
1199``mon session timeout``
1200
1201:Description: Monitor will terminate inactive sessions stay idle over this
1202 time limit.
1203:Type: Integer
1204:Default: 300
1205
1206
7c673cae
FG
1207
1208.. _Paxos: http://en.wikipedia.org/wiki/Paxos_(computer_science)
1209.. _Monitor Keyrings: ../../../dev/mon-bootstrap#secret-keys
1210.. _Ceph configuration file: ../ceph-conf/#monitors
1211.. _Network Configuration Reference: ../network-config-ref
1212.. _Monitor lookup through DNS: ../mon-lookup-dns
1213.. _ACID: http://en.wikipedia.org/wiki/ACID
1214.. _Adding/Removing a Monitor: ../../operations/add-or-rm-mons
1215.. _Add/Remove a Monitor (ceph-deploy): ../../deployment/ceph-deploy-mon
1216.. _Monitoring a Cluster: ../../operations/monitoring
1217.. _Monitoring OSDs and PGs: ../../operations/monitoring-osd-pg
1218.. _Bootstrapping a Monitor: ../../../dev/mon-bootstrap
1219.. _Changing a Monitor's IP Address: ../../operations/add-or-rm-mons#changing-a-monitor-s-ip-address
1220.. _Monitor/OSD Interaction: ../mon-osd-interaction
1221.. _Scalability and High Availability: ../../../architecture#scalability-and-high-availability
1222.. _Pool values: ../../operations/pools/#set-pool-values