]> sourceware.org Git - lvm2.git/blob - doc/example.conf.in
Refer to details of snapshot of raid problem.
[lvm2.git] / doc / example.conf.in
1 # This is an example configuration file for the LVM2 system.
2 # It contains the default settings that would be used if there was no
3 # @DEFAULT_SYS_DIR@/lvm.conf file.
4 #
5 # Refer to 'man lvm.conf' for further information including the file layout.
6 #
7 # To put this file in a different directory and override @DEFAULT_SYS_DIR@ set
8 # the environment variable LVM_SYSTEM_DIR before running the tools.
9 #
10 # N.B. Take care that each setting only appears once if uncommenting
11 # example settings in this file.
12
13
14 # This section allows you to configure which block devices should
15 # be used by the LVM system.
16 devices {
17
18 # Where do you want your volume groups to appear ?
19 dir = "/dev"
20
21 # An array of directories that contain the device nodes you wish
22 # to use with LVM2.
23 scan = [ "/dev" ]
24
25 # If set, the cache of block device nodes with all associated symlinks
26 # will be constructed out of the existing udev database content.
27 # This avoids using and opening any inapplicable non-block devices or
28 # subdirectories found in the device directory. This setting is applied
29 # to udev-managed device directory only, other directories will be scanned
30 # fully. LVM2 needs to be compiled with udev support for this setting to
31 # take effect. N.B. Any device node or symlink not managed by udev in
32 # udev directory will be ignored with this setting on.
33 obtain_device_list_from_udev = 1
34
35 # If several entries in the scanned directories correspond to the
36 # same block device and the tools need to display a name for device,
37 # all the pathnames are matched against each item in the following
38 # list of regular expressions in turn and the first match is used.
39 preferred_names = [ ]
40
41 # Try to avoid using undescriptive /dev/dm-N names, if present.
42 # preferred_names = [ "^/dev/mpath/", "^/dev/mapper/mpath", "^/dev/[hs]d" ]
43
44 # A filter that tells LVM2 to only use a restricted set of devices.
45 # The filter consists of an array of regular expressions. These
46 # expressions can be delimited by a character of your choice, and
47 # prefixed with either an 'a' (for accept) or 'r' (for reject).
48 # The first expression found to match a device name determines if
49 # the device will be accepted or rejected (ignored). Devices that
50 # don't match any patterns are accepted.
51
52 # Be careful if there there are symbolic links or multiple filesystem
53 # entries for the same device as each name is checked separately against
54 # the list of patterns. The effect is that if the first pattern in the
55 # list to match a name is an 'a' pattern for any of the names, the device
56 # is accepted; otherwise if the first pattern in the list to match a name
57 # is an 'r' pattern for any of the names it is rejected; otherwise it is
58 # accepted.
59
60 # Don't have more than one filter line active at once: only one gets used.
61
62 # Run vgscan after you change this parameter to ensure that
63 # the cache file gets regenerated (see below).
64 # If it doesn't do what you expect, check the output of 'vgscan -vvvv'.
65
66
67 # By default we accept every block device:
68 filter = [ "a/.*/" ]
69
70 # Exclude the cdrom drive
71 # filter = [ "r|/dev/cdrom|" ]
72
73 # When testing I like to work with just loopback devices:
74 # filter = [ "a/loop/", "r/.*/" ]
75
76 # Or maybe all loops and ide drives except hdc:
77 # filter =[ "a|loop|", "r|/dev/hdc|", "a|/dev/ide|", "r|.*|" ]
78
79 # Use anchors if you want to be really specific
80 # filter = [ "a|^/dev/hda8$|", "r/.*/" ]
81
82 # The results of the filtering are cached on disk to avoid
83 # rescanning dud devices (which can take a very long time).
84 # By default this cache is stored in the @DEFAULT_SYS_DIR@/@DEFAULT_CACHE_SUBDIR@ directory
85 # in a file called '.cache'.
86 # It is safe to delete the contents: the tools regenerate it.
87 # (The old setting 'cache' is still respected if neither of
88 # these new ones is present.)
89 cache_dir = "@DEFAULT_SYS_DIR@/@DEFAULT_CACHE_SUBDIR@"
90 cache_file_prefix = ""
91
92 # You can turn off writing this cache file by setting this to 0.
93 write_cache_state = 1
94
95 # Advanced settings.
96
97 # List of pairs of additional acceptable block device types found
98 # in /proc/devices with maximum (non-zero) number of partitions.
99 # types = [ "fd", 16 ]
100
101 # If sysfs is mounted (2.6 kernels) restrict device scanning to
102 # the block devices it believes are valid.
103 # 1 enables; 0 disables.
104 sysfs_scan = 1
105
106 # By default, LVM2 will ignore devices used as component paths
107 # of device-mapper multipath devices.
108 # 1 enables; 0 disables.
109 multipath_component_detection = 1
110
111 # By default, LVM2 will ignore devices used as components of
112 # software RAID (md) devices by looking for md superblocks.
113 # 1 enables; 0 disables.
114 md_component_detection = 1
115
116 # By default, if a PV is placed directly upon an md device, LVM2
117 # will align its data blocks with the md device's stripe-width.
118 # 1 enables; 0 disables.
119 md_chunk_alignment = 1
120
121 # Default alignment of the start of a data area in MB. If set to 0,
122 # a value of 64KB will be used. Set to 1 for 1MiB, 2 for 2MiB, etc.
123 # default_data_alignment = @DEFAULT_DATA_ALIGNMENT@
124
125 # By default, the start of a PV's data area will be a multiple of
126 # the 'minimum_io_size' or 'optimal_io_size' exposed in sysfs.
127 # - minimum_io_size - the smallest request the device can perform
128 # w/o incurring a read-modify-write penalty (e.g. MD's chunk size)
129 # - optimal_io_size - the device's preferred unit of receiving I/O
130 # (e.g. MD's stripe width)
131 # minimum_io_size is used if optimal_io_size is undefined (0).
132 # If md_chunk_alignment is enabled, that detects the optimal_io_size.
133 # This setting takes precedence over md_chunk_alignment.
134 # 1 enables; 0 disables.
135 data_alignment_detection = 1
136
137 # Alignment (in KB) of start of data area when creating a new PV.
138 # md_chunk_alignment and data_alignment_detection are disabled if set.
139 # Set to 0 for the default alignment (see: data_alignment_default)
140 # or page size, if larger.
141 data_alignment = 0
142
143 # By default, the start of the PV's aligned data area will be shifted by
144 # the 'alignment_offset' exposed in sysfs. This offset is often 0 but
145 # may be non-zero; e.g.: certain 4KB sector drives that compensate for
146 # windows partitioning will have an alignment_offset of 3584 bytes
147 # (sector 7 is the lowest aligned logical block, the 4KB sectors start
148 # at LBA -1, and consequently sector 63 is aligned on a 4KB boundary).
149 # But note that pvcreate --dataalignmentoffset will skip this detection.
150 # 1 enables; 0 disables.
151 data_alignment_offset_detection = 1
152
153 # If, while scanning the system for PVs, LVM2 encounters a device-mapper
154 # device that has its I/O suspended, it waits for it to become accessible.
155 # Set this to 1 to skip such devices. This should only be needed
156 # in recovery situations.
157 ignore_suspended_devices = 0
158
159 # During each LVM operation errors received from each device are counted.
160 # If the counter of a particular device exceeds the limit set here, no
161 # further I/O is sent to that device for the remainder of the respective
162 # operation. Setting the parameter to 0 disables the counters altogether.
163 disable_after_error_count = 0
164
165 # Allow use of pvcreate --uuid without requiring --restorefile.
166 require_restorefile_with_uuid = 1
167
168 # Minimum size (in KB) of block devices which can be used as PVs.
169 # In a clustered environment all nodes must use the same value.
170 # Any value smaller than 512KB is ignored.
171
172 # Ignore devices smaller than 2MB such as floppy drives.
173 pv_min_size = 2048
174
175 # The original built-in setting was 512 up to and including version 2.02.84.
176 # pv_min_size = 512
177
178 # Issue discards to a logical volumes's underlying physical volume(s) when
179 # the logical volume is no longer using the physical volumes' space (e.g.
180 # lvremove, lvreduce, etc). Discards inform the storage that a region is
181 # no longer in use. Storage that supports discards advertise the protocol
182 # specific way discards should be issued by the kernel (TRIM, UNMAP, or
183 # WRITE SAME with UNMAP bit set). Not all storage will support or benefit
184 # from discards but SSDs and thinly provisioned LUNs generally do. If set
185 # to 1, discards will only be issued if both the storage and kernel provide
186 # support.
187 # 1 enables; 0 disables.
188 issue_discards = 0
189 }
190
191 # This section allows you to configure the way in which LVM selects
192 # free space for its Logical Volumes.
193 allocation {
194
195 # When searching for free space to extend an LV, the "cling"
196 # allocation policy will choose space on the same PVs as the last
197 # segment of the existing LV. If there is insufficient space and a
198 # list of tags is defined here, it will check whether any of them are
199 # attached to the PVs concerned and then seek to match those PV tags
200 # between existing extents and new extents.
201 # Use the special tag "@*" as a wildcard to match any PV tag.
202
203 # Example: LVs are mirrored between two sites within a single VG.
204 # PVs are tagged with either @site1 or @site2 to indicate where
205 # they are situated.
206
207 # cling_tag_list = [ "@site1", "@site2" ]
208 # cling_tag_list = [ "@*" ]
209
210 # Changes made in version 2.02.85 extended the reach of the 'cling'
211 # policies to detect more situations where data can be grouped
212 # onto the same disks. Set this to 0 to revert to the previous
213 # algorithm.
214 maximise_cling = 1
215
216 # Set to 1 to guarantee that mirror logs will always be placed on
217 # different PVs from the mirror images. This was the default
218 # until version 2.02.85.
219 mirror_logs_require_separate_pvs = 0
220
221 # Set to 1 to guarantee that thin pool metadata will always
222 # be placed on different PVs from the pool data.
223 thin_pool_metadata_require_separate_pvs = 0
224 }
225
226 # This section that allows you to configure the nature of the
227 # information that LVM2 reports.
228 log {
229
230 # Controls the messages sent to stdout or stderr.
231 # There are three levels of verbosity, 3 being the most verbose.
232 verbose = 0
233
234 # Should we send log messages through syslog?
235 # 1 is yes; 0 is no.
236 syslog = 1
237
238 # Should we log error and debug messages to a file?
239 # By default there is no log file.
240 #file = "/var/log/lvm2.log"
241
242 # Should we overwrite the log file each time the program is run?
243 # By default we append.
244 overwrite = 0
245
246 # What level of log messages should we send to the log file and/or syslog?
247 # There are 6 syslog-like log levels currently in use - 2 to 7 inclusive.
248 # 7 is the most verbose (LOG_DEBUG).
249 level = 0
250
251 # Format of output messages
252 # Whether or not (1 or 0) to indent messages according to their severity
253 indent = 1
254
255 # Whether or not (1 or 0) to display the command name on each line output
256 command_names = 0
257
258 # A prefix to use before the message text (but after the command name,
259 # if selected). Default is two spaces, so you can see/grep the severity
260 # of each message.
261 prefix = " "
262
263 # To make the messages look similar to the original LVM tools use:
264 # indent = 0
265 # command_names = 1
266 # prefix = " -- "
267
268 # Set this if you want log messages during activation.
269 # Don't use this in low memory situations (can deadlock).
270 # activation = 0
271 }
272
273 # Configuration of metadata backups and archiving. In LVM2 when we
274 # talk about a 'backup' we mean making a copy of the metadata for the
275 # *current* system. The 'archive' contains old metadata configurations.
276 # Backups are stored in a human readeable text format.
277 backup {
278
279 # Should we maintain a backup of the current metadata configuration ?
280 # Use 1 for Yes; 0 for No.
281 # Think very hard before turning this off!
282 backup = 1
283
284 # Where shall we keep it ?
285 # Remember to back up this directory regularly!
286 backup_dir = "@DEFAULT_SYS_DIR@/@DEFAULT_BACKUP_SUBDIR@"
287
288 # Should we maintain an archive of old metadata configurations.
289 # Use 1 for Yes; 0 for No.
290 # On by default. Think very hard before turning this off.
291 archive = 1
292
293 # Where should archived files go ?
294 # Remember to back up this directory regularly!
295 archive_dir = "@DEFAULT_SYS_DIR@/@DEFAULT_ARCHIVE_SUBDIR@"
296
297 # What is the minimum number of archive files you wish to keep ?
298 retain_min = 10
299
300 # What is the minimum time you wish to keep an archive file for ?
301 retain_days = 30
302 }
303
304 # Settings for the running LVM2 in shell (readline) mode.
305 shell {
306
307 # Number of lines of history to store in ~/.lvm_history
308 history_size = 100
309 }
310
311
312 # Miscellaneous global LVM2 settings
313 global {
314
315 # The file creation mask for any files and directories created.
316 # Interpreted as octal if the first digit is zero.
317 umask = 077
318
319 # Allow other users to read the files
320 #umask = 022
321
322 # Enabling test mode means that no changes to the on disk metadata
323 # will be made. Equivalent to having the -t option on every
324 # command. Defaults to off.
325 test = 0
326
327 # Default value for --units argument
328 units = "h"
329
330 # Since version 2.02.54, the tools distinguish between powers of
331 # 1024 bytes (e.g. KiB, MiB, GiB) and powers of 1000 bytes (e.g.
332 # KB, MB, GB).
333 # If you have scripts that depend on the old behaviour, set this to 0
334 # temporarily until you update them.
335 si_unit_consistency = 1
336
337 # Whether or not to communicate with the kernel device-mapper.
338 # Set to 0 if you want to use the tools to manipulate LVM metadata
339 # without activating any logical volumes.
340 # If the device-mapper kernel driver is not present in your kernel
341 # setting this to 0 should suppress the error messages.
342 activation = 1
343
344 # If we can't communicate with device-mapper, should we try running
345 # the LVM1 tools?
346 # This option only applies to 2.4 kernels and is provided to help you
347 # switch between device-mapper kernels and LVM1 kernels.
348 # The LVM1 tools need to be installed with .lvm1 suffices
349 # e.g. vgscan.lvm1 and they will stop working after you start using
350 # the new lvm2 on-disk metadata format.
351 # The default value is set when the tools are built.
352 # fallback_to_lvm1 = 0
353
354 # The default metadata format that commands should use - "lvm1" or "lvm2".
355 # The command line override is -M1 or -M2.
356 # Defaults to "lvm2".
357 # format = "lvm2"
358
359 # Location of proc filesystem
360 proc = "/proc"
361
362 # Type of locking to use. Defaults to local file-based locking (1).
363 # Turn locking off by setting to 0 (dangerous: risks metadata corruption
364 # if LVM2 commands get run concurrently).
365 # Type 2 uses the external shared library locking_library.
366 # Type 3 uses built-in clustered locking.
367 # Type 4 uses read-only locking which forbids any operations that might
368 # change metadata.
369 locking_type = 1
370
371 # Set to 0 to fail when a lock request cannot be satisfied immediately.
372 wait_for_locks = 1
373
374 # If using external locking (type 2) and initialisation fails,
375 # with this set to 1 an attempt will be made to use the built-in
376 # clustered locking.
377 # If you are using a customised locking_library you should set this to 0.
378 fallback_to_clustered_locking = 1
379
380 # If an attempt to initialise type 2 or type 3 locking failed, perhaps
381 # because cluster components such as clvmd are not running, with this set
382 # to 1 an attempt will be made to use local file-based locking (type 1).
383 # If this succeeds, only commands against local volume groups will proceed.
384 # Volume Groups marked as clustered will be ignored.
385 fallback_to_local_locking = 1
386
387 # Local non-LV directory that holds file-based locks while commands are
388 # in progress. A directory like /tmp that may get wiped on reboot is OK.
389 locking_dir = "@DEFAULT_LOCK_DIR@"
390
391 # Whenever there are competing read-only and read-write access requests for
392 # a volume group's metadata, instead of always granting the read-only
393 # requests immediately, delay them to allow the read-write requests to be
394 # serviced. Without this setting, write access may be stalled by a high
395 # volume of read-only requests.
396 # NB. This option only affects locking_type = 1 viz. local file-based
397 # locking.
398 prioritise_write_locks = 1
399
400 # Other entries can go here to allow you to load shared libraries
401 # e.g. if support for LVM1 metadata was compiled as a shared library use
402 # format_libraries = "liblvm2format1.so"
403 # Full pathnames can be given.
404
405 # Search this directory first for shared libraries.
406 # library_dir = "/lib"
407
408 # The external locking library to load if locking_type is set to 2.
409 # locking_library = "liblvm2clusterlock.so"
410
411 # Treat any internal errors as fatal errors, aborting the process that
412 # encountered the internal error. Please only enable for debugging.
413 abort_on_internal_errors = 0
414
415 # Check whether CRC is matching when parsed VG is used multiple times.
416 # This is useful to catch unexpected internal cached volume group
417 # structure modification. Please only enable for debugging.
418 detect_internal_vg_cache_corruption = 0
419
420 # If set to 1, no operations that change on-disk metadata will be permitted.
421 # Additionally, read-only commands that encounter metadata in need of repair
422 # will still be allowed to proceed exactly as if the repair had been
423 # performed (except for the unchanged vg_seqno).
424 # Inappropriate use could mess up your system, so seek advice first!
425 metadata_read_only = 0
426
427 # 'mirror_segtype_default' defines which segtype will be used when the
428 # shorthand '-m' option is used for mirroring. The possible options are:
429 #
430 # "mirror" - The original RAID1 implementation provided by LVM2/DM. It is
431 # characterized by a flexible log solution (core, disk, mirrored)
432 # and by the necessity to block I/O while reconfiguring in the
433 # event of a failure.
434 #
435 # There is an inherent race in the dmeventd failure handling
436 # logic with snapshots of devices using this type of RAID1 that
437 # in the worst case could cause a deadlock.
438 # Ref: https://bugzilla.redhat.com/show_bug.cgi?id=817130#c10
439 #
440 # "raid1" - This implementation leverages MD's RAID1 personality through
441 # device-mapper. It is characterized by a lack of log options.
442 # (A log is always allocated for every device and they are placed
443 # on the same device as the image - no separate devices are
444 # required.) This mirror implementation does not require I/O
445 # to be blocked in the kernel in the event of a failure.
446 # This mirror implementation is not cluster-aware and cannot be
447 # used in a shared (active/active) fashion in a cluster.
448 #
449 # Specify the '--type <mirror|raid1>' option to override this default
450 # setting.
451 mirror_segtype_default = "mirror"
452
453 # The default format for displaying LV names in lvdisplay was changed
454 # in version 2.02.89 to show the LV name and path separately.
455 # Previously this was always shown as /dev/vgname/lvname even when that
456 # was never a valid path in the /dev filesystem.
457 # Set to 1 to reinstate the previous format.
458 #
459 # lvdisplay_shows_full_device_path = 0
460
461 # Whether to use (trust) a running instance of lvmetad. If this is set to
462 # 0, all commands fall back to the usual scanning mechanisms. When set to 1
463 # *and* when lvmetad is running (it is not auto-started), the volume group
464 # metadata and PV state flags are obtained from the lvmetad instance and no
465 # scanning is done by the individual commands. In a setup with lvmetad,
466 # lvmetad udev rules *must* be set up for LVM to work correctly. Without
467 # proper udev rules, all changes in block device configuration will be
468 # *ignored* until a manual 'vgscan' is performed.
469 use_lvmetad = 0
470 }
471
472 activation {
473 # Set to 1 to perform internal checks on the operations issued to
474 # libdevmapper. Useful for debugging problems with activation.
475 # Some of the checks may be expensive, so it's best to use this
476 # only when there seems to be a problem.
477 checks = 0
478
479 # Set to 0 to disable udev synchronisation (if compiled into the binaries).
480 # Processes will not wait for notification from udev.
481 # They will continue irrespective of any possible udev processing
482 # in the background. You should only use this if udev is not running
483 # or has rules that ignore the devices LVM2 creates.
484 # The command line argument --nodevsync takes precedence over this setting.
485 # If set to 1 when udev is not running, and there are LVM2 processes
486 # waiting for udev, run 'dmsetup udevcomplete_all' manually to wake them up.
487 udev_sync = 1
488
489 # Set to 0 to disable the udev rules installed by LVM2 (if built with
490 # --enable-udev_rules). LVM2 will then manage the /dev nodes and symlinks
491 # for active logical volumes directly itself.
492 # N.B. Manual intervention may be required if this setting is changed
493 # while any logical volumes are active.
494 udev_rules = 1
495
496 # Set to 1 for LVM2 to verify operations performed by udev. This turns on
497 # additional checks (and if necessary, repairs) on entries in the device
498 # directory after udev has completed processing its events.
499 # Useful for diagnosing problems with LVM2/udev interactions.
500 verify_udev_operations = 0
501
502 # If set to 1 and if deactivation of an LV fails, perhaps because
503 # a process run from a quick udev rule temporarily opened the device,
504 # retry the operation for a few seconds before failing.
505 retry_deactivation = 1
506
507 # How to fill in missing stripes if activating an incomplete volume.
508 # Using "error" will make inaccessible parts of the device return
509 # I/O errors on access. You can instead use a device path, in which
510 # case, that device will be used to in place of missing stripes.
511 # But note that using anything other than "error" with mirrored
512 # or snapshotted volumes is likely to result in data corruption.
513 missing_stripe_filler = "error"
514
515 # The linear target is an optimised version of the striped target
516 # that only handles a single stripe. Set this to 0 to disable this
517 # optimisation and always use the striped target.
518 use_linear_target = 1
519
520 # How much stack (in KB) to reserve for use while devices suspended
521 # Prior to version 2.02.89 this used to be set to 256KB
522 reserved_stack = 64
523
524 # How much memory (in KB) to reserve for use while devices suspended
525 reserved_memory = 8192
526
527 # Nice value used while devices suspended
528 process_priority = -18
529
530 # If volume_list is defined, each LV is only activated if there is a
531 # match against the list.
532 # "vgname" and "vgname/lvname" are matched exactly.
533 # "@tag" matches any tag set in the LV or VG.
534 # "@*" matches if any tag defined on the host is also set in the LV or VG
535 #
536 # volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ]
537
538 # If read_only_volume_list is defined, each LV that is to be activated
539 # is checked against the list, and if it matches, it as activated
540 # in read-only mode. (This overrides '--permission rw' stored in the
541 # metadata.)
542 # "vgname" and "vgname/lvname" are matched exactly.
543 # "@tag" matches any tag set in the LV or VG.
544 # "@*" matches if any tag defined on the host is also set in the LV or VG
545 #
546 # read_only_volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ]
547
548 # Size (in KB) of each copy operation when mirroring
549 mirror_region_size = 512
550
551 # Setting to use when there is no readahead value stored in the metadata.
552 #
553 # "none" - Disable readahead.
554 # "auto" - Use default value chosen by kernel.
555 readahead = "auto"
556
557 # 'raid_fault_policy' defines how a device failure in a RAID logical
558 # volume is handled. This includes logical volumes that have the following
559 # segment types: raid1, raid4, raid5*, and raid6*.
560 #
561 # In the event of a failure, the following policies will determine what
562 # actions are performed during the automated response to failures (when
563 # dmeventd is monitoring the RAID logical volume) and when 'lvconvert' is
564 # called manually with the options '--repair' and '--use-policies'.
565 #
566 # "warn" - Use the system log to warn the user that a device in the RAID
567 # logical volume has failed. It is left to the user to run
568 # 'lvconvert --repair' manually to remove or replace the failed
569 # device. As long as the number of failed devices does not
570 # exceed the redundancy of the logical volume (1 device for
571 # raid4/5, 2 for raid6, etc) the logical volume will remain
572 # usable.
573 #
574 # "allocate" - Attempt to use any extra physical volumes in the volume
575 # group as spares and replace faulty devices.
576 #
577 raid_fault_policy = "warn"
578
579 # 'mirror_image_fault_policy' and 'mirror_log_fault_policy' define
580 # how a device failure affecting a mirror (of "mirror" segment type) is
581 # handled. A mirror is composed of mirror images (copies) and a log.
582 # A disk log ensures that a mirror does not need to be re-synced
583 # (all copies made the same) every time a machine reboots or crashes.
584 #
585 # In the event of a failure, the specified policy will be used to determine
586 # what happens. This applies to automatic repairs (when the mirror is being
587 # monitored by dmeventd) and to manual lvconvert --repair when
588 # --use-policies is given.
589 #
590 # "remove" - Simply remove the faulty device and run without it. If
591 # the log device fails, the mirror would convert to using
592 # an in-memory log. This means the mirror will not
593 # remember its sync status across crashes/reboots and
594 # the entire mirror will be re-synced. If a
595 # mirror image fails, the mirror will convert to a
596 # non-mirrored device if there is only one remaining good
597 # copy.
598 #
599 # "allocate" - Remove the faulty device and try to allocate space on
600 # a new device to be a replacement for the failed device.
601 # Using this policy for the log is fast and maintains the
602 # ability to remember sync state through crashes/reboots.
603 # Using this policy for a mirror device is slow, as it
604 # requires the mirror to resynchronize the devices, but it
605 # will preserve the mirror characteristic of the device.
606 # This policy acts like "remove" if no suitable device and
607 # space can be allocated for the replacement.
608 #
609 # "allocate_anywhere" - Not yet implemented. Useful to place the log device
610 # temporarily on same physical volume as one of the mirror
611 # images. This policy is not recommended for mirror devices
612 # since it would break the redundant nature of the mirror. This
613 # policy acts like "remove" if no suitable device and space can
614 # be allocated for the replacement.
615
616 mirror_log_fault_policy = "allocate"
617 mirror_image_fault_policy = "remove"
618
619 # 'snapshot_autoextend_threshold' and 'snapshot_autoextend_percent' define
620 # how to handle automatic snapshot extension. The former defines when the
621 # snapshot should be extended: when its space usage exceeds this many
622 # percent. The latter defines how much extra space should be allocated for
623 # the snapshot, in percent of its current size.
624 #
625 # For example, if you set snapshot_autoextend_threshold to 70 and
626 # snapshot_autoextend_percent to 20, whenever a snapshot exceeds 70% usage,
627 # it will be extended by another 20%. For a 1G snapshot, using up 700M will
628 # trigger a resize to 1.2G. When the usage exceeds 840M, the snapshot will
629 # be extended to 1.44G, and so on.
630 #
631 # Setting snapshot_autoextend_threshold to 100 disables automatic
632 # extensions. The minimum value is 50 (A setting below 50 will be treated
633 # as 50).
634
635 snapshot_autoextend_threshold = 100
636 snapshot_autoextend_percent = 20
637
638 # 'thin_pool_autoextend_threshold' and 'thin_pool_autoextend_percent' define
639 # how to handle automatic pool extension. The former defines when the
640 # pool should be extended: when its space usage exceeds this many
641 # percent. The latter defines how much extra space should be allocated for
642 # the pool, in percent of its current size.
643 #
644 # For example, if you set thin_pool_autoextend_threshold to 70 and
645 # thin_pool_autoextend_percent to 20, whenever a pool exceeds 70% usage,
646 # it will be extended by another 20%. For a 1G pool, using up 700M will
647 # trigger a resize to 1.2G. When the usage exceeds 840M, the pool will
648 # be extended to 1.44G, and so on.
649 #
650 # Setting thin_pool_autoextend_threshold to 100 disables automatic
651 # extensions. The minimum value is 50 (A setting below 50 will be treated
652 # as 50).
653
654 thin_pool_autoextend_threshold = 100
655 thin_pool_autoextend_percent = 20
656
657 # Full path of the utility called to check that a thin metadata device
658 # is in a state that allows it to be used.
659 # Each time a thin pool needs to be activated, this utility is executed.
660 # The activation will only proceed if the utility has an exit status of 0.
661 # Set to "" to skip this check. (Not recommended.)
662 # The thin tools are available as part of the device-mapper-persistent-data
663 # package from https://github.com/jthornber/thin-provisioning-tools.
664 #
665 thin_check_executable = "@THIN_CHECK_CMD@"
666
667 # String with options passed with thin_check command. By default,
668 # option '-q' is for quiet output.
669 thin_check_options = [ "-q" ]
670
671 # While activating devices, I/O to devices being (re)configured is
672 # suspended, and as a precaution against deadlocks, LVM2 needs to pin
673 # any memory it is using so it is not paged out. Groups of pages that
674 # are known not to be accessed during activation need not be pinned
675 # into memory. Each string listed in this setting is compared against
676 # each line in /proc/self/maps, and the pages corresponding to any
677 # lines that match are not pinned. On some systems locale-archive was
678 # found to make up over 80% of the memory used by the process.
679 # mlock_filter = [ "locale/locale-archive", "gconv/gconv-modules.cache" ]
680
681 # Set to 1 to revert to the default behaviour prior to version 2.02.62
682 # which used mlockall() to pin the whole process's memory while activating
683 # devices.
684 use_mlockall = 0
685
686 # Monitoring is enabled by default when activating logical volumes.
687 # Set to 0 to disable monitoring or use the --ignoremonitoring option.
688 monitoring = 1
689
690 # When pvmove or lvconvert must wait for the kernel to finish
691 # synchronising or merging data, they check and report progress
692 # at intervals of this number of seconds. The default is 15 seconds.
693 # If this is set to 0 and there is only one thing to wait for, there
694 # are no progress reports, but the process is awoken immediately the
695 # operation is complete.
696 polling_interval = 15
697 }
698
699
700 ####################
701 # Advanced section #
702 ####################
703
704 # Metadata settings
705 #
706 # metadata {
707 # Default number of copies of metadata to hold on each PV. 0, 1 or 2.
708 # You might want to override it from the command line with 0
709 # when running pvcreate on new PVs which are to be added to large VGs.
710
711 # pvmetadatacopies = 1
712
713 # Default number of copies of metadata to maintain for each VG.
714 # If set to a non-zero value, LVM automatically chooses which of
715 # the available metadata areas to use to achieve the requested
716 # number of copies of the VG metadata. If you set a value larger
717 # than the the total number of metadata areas available then
718 # metadata is stored in them all.
719 # The default value of 0 ("unmanaged") disables this automatic
720 # management and allows you to control which metadata areas
721 # are used at the individual PV level using 'pvchange
722 # --metadataignore y/n'.
723
724 # vgmetadatacopies = 0
725
726 # Approximate default size of on-disk metadata areas in sectors.
727 # You should increase this if you have large volume groups or
728 # you want to retain a large on-disk history of your metadata changes.
729
730 # pvmetadatasize = 255
731
732 # List of directories holding live copies of text format metadata.
733 # These directories must not be on logical volumes!
734 # It's possible to use LVM2 with a couple of directories here,
735 # preferably on different (non-LV) filesystems, and with no other
736 # on-disk metadata (pvmetadatacopies = 0). Or this can be in
737 # addition to on-disk metadata areas.
738 # The feature was originally added to simplify testing and is not
739 # supported under low memory situations - the machine could lock up.
740 #
741 # Never edit any files in these directories by hand unless you
742 # you are absolutely sure you know what you are doing! Use
743 # the supplied toolset to make changes (e.g. vgcfgrestore).
744
745 # dirs = [ "/etc/lvm/metadata", "/mnt/disk2/lvm/metadata2" ]
746 #}
747
748 # Event daemon
749 #
750 dmeventd {
751 # mirror_library is the library used when monitoring a mirror device.
752 #
753 # "libdevmapper-event-lvm2mirror.so" attempts to recover from
754 # failures. It removes failed devices from a volume group and
755 # reconfigures a mirror as necessary. If no mirror library is
756 # provided, mirrors are not monitored through dmeventd.
757
758 mirror_library = "libdevmapper-event-lvm2mirror.so"
759
760 # snapshot_library is the library used when monitoring a snapshot device.
761 #
762 # "libdevmapper-event-lvm2snapshot.so" monitors the filling of
763 # snapshots and emits a warning through syslog when the use of
764 # the snapshot exceeds 80%. The warning is repeated when 85%, 90% and
765 # 95% of the snapshot is filled.
766
767 snapshot_library = "libdevmapper-event-lvm2snapshot.so"
768
769 # thin_library is the library used when monitoring a thin device.
770 #
771 # "libdevmapper-event-lvm2thin.so" monitors the filling of
772 # pool and emits a warning through syslog when the use of
773 # the pool exceeds 80%. The warning is repeated when 85%, 90% and
774 # 95% of the pool is filled.
775
776 thin_library = "libdevmapper-event-lvm2thin.so"
777
778 # Full path of the dmeventd binary.
779 #
780 # executable = "@DMEVENTD_PATH@"
781 }
This page took 0.074179 seconds and 5 git commands to generate.