2016-09-06 22:50:08 +03:00
.TH "LVMRAID" "7" "LVM TOOLS #VERSION#" "Red Hat, Inc" "\""
2021-04-15 23:18:05 +03:00
.
.de ipbu
.PD 0
.IP " \[bu]"
.PD
..
.
.de ipbu_npd
.IP " \[bu]"
..
.
2016-09-06 22:50:08 +03:00
.SH NAME
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
lvmraid \(em LVM RAID
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SH DESCRIPTION
2021-04-15 23:18:05 +03:00
.
2017-05-03 00:47:02 +03:00
\fBlvm\fP(8) RAID is a way to create a Logical Volume (LV) that uses
multiple physical devices to improve performance or tolerate device
failures. In LVM, the physical devices are Physical Volumes (PVs) in a
single Volume Group (VG).
2021-04-15 23:18:05 +03:00
.P
2017-05-03 00:47:02 +03:00
How LV data blocks are placed onto PVs is determined by the RAID level.
RAID levels are commonly referred to as 'raid' followed by a number, e.g.
raid1, raid5 or raid6. Selecting a RAID level involves making tradeoffs
among: physical device requirements, fault tolerance, and performance. A
description of the RAID levels can be found at
2016-09-06 22:50:08 +03:00
.br
2021-04-15 23:18:05 +03:00
.I www.snia.org/sites/default/files/SNIA_DDF_Technical_Position_v2.0.pdf
.P
2016-09-06 22:50:08 +03:00
LVM RAID uses both Device Mapper (DM) and Multiple Device (MD) drivers
from the Linux kernel. DM is used to create and manage visible LVM
devices, and MD is used to place data on physical devices.
2021-04-15 23:18:05 +03:00
.P
2017-03-03 00:24:19 +03:00
LVM creates hidden LVs (dm devices) layered between the visible LV and
2017-03-16 02:19:29 +03:00
physical devices. LVs in the middle layers are called sub LVs.
2017-03-03 00:24:19 +03:00
For LVM raid, a sub LV pair to store data and metadata (raid superblock
2017-03-30 01:44:04 +03:00
and write intent bitmap) is created per raid image/leg (see lvs command examples below).
2021-04-15 23:18:05 +03:00
.
.SH USAGE
.
2016-09-06 22:50:08 +03:00
To create a RAID LV, use lvcreate and specify an LV type.
The LV type corresponds to a RAID level.
The basic RAID levels that can be used are:
2021-04-15 23:18:05 +03:00
.BR raid0 ", " raid1 ", " raid4 ", " raid5 ", " raid6 ", " raid10 .
.P
2017-03-27 17:45:48 +03:00
.B lvcreate --type
2016-09-06 22:50:08 +03:00
.I RaidLevel
2021-04-15 23:18:05 +03:00
.RI [ OPTIONS ]
2017-03-27 17:45:48 +03:00
.B --name
2016-09-06 22:50:08 +03:00
.I Name
2017-03-27 17:45:48 +03:00
.B --size
2016-09-06 22:50:08 +03:00
.I Size
.I VG
2021-04-15 23:18:05 +03:00
.RI [ PVs ]
.P
2016-09-06 22:50:08 +03:00
To display the LV type of an existing LV, run:
2021-04-15 23:18:05 +03:00
.P
.B lvs -o name,segtype \fILV
.P
2016-09-06 22:50:08 +03:00
(The LV type is also referred to as "segment type" or "segtype".)
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
LVs can be created with the following types:
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS raid0
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
Also called striping, raid0 spreads LV data across multiple devices in
units of stripe size. This is used to increase performance. LV data will
be lost if any of the devices fail.
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvcreate --type raid0
2021-04-15 23:18:05 +03:00
.RB [ --stripes
.I Number
2017-03-27 17:45:48 +03:00
.B --stripesize
2021-04-15 23:18:05 +03:00
.IR Size ]
.I VG
.RI [ PVs ]
.
.TP
.B --stripes \fINumber
specifies the \fINumber\fP of devices to spread the LV across.
.
.TP
.B --stripesize \fISize
specifies the \fISize\fP of each stripe in kilobytes. This is the amount of
2016-09-06 22:50:08 +03:00
data that is written to one device before moving to the next.
.P
\fIPVs\fP specifies the devices to use. If not specified, lvm will choose
2017-03-16 02:19:29 +03:00
\fINumber\fP devices, one for each stripe based on the number of PVs
available or supplied.
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS raid1
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
Also called mirroring, raid1 uses multiple devices to duplicate LV data.
The LV data remains available if all but one of the devices fail.
2017-03-03 00:24:19 +03:00
The minimum number of devices (i.e. sub LV pairs) required is 2.
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvcreate --type raid1
[\fB--mirrors\fP \fINumber\fP]
2016-09-06 22:50:08 +03:00
\fIVG\fP
[\fIPVs\fP]
2021-04-15 23:18:05 +03:00
.
.TP
.B --mirrors \fINumber
specifies the \fINumber\fP of mirror images in addition to the original LV
2017-03-27 17:45:48 +03:00
image, e.g. --mirrors 1 means there are two images of the data, the
2016-09-06 22:50:08 +03:00
original and one mirror image.
.P
\fIPVs\fP specifies the devices to use. If not specified, lvm will choose
\fINumber\fP devices, one for each image.
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS raid4
2021-04-15 23:18:05 +03:00
.
2017-03-03 00:24:19 +03:00
raid4 is a form of striping that uses an extra, first device dedicated to
storing parity blocks. The LV data remains available if one device fails. The
2016-09-06 22:50:08 +03:00
parity is used to recalculate data that is lost from a single device. The
minimum number of devices required is 3.
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvcreate --type raid4
[\fB--stripes\fP \fINumber\fP \fB--stripesize\fP \fISize\fP]
2016-09-06 22:50:08 +03:00
\fIVG\fP
[\fIPVs\fP]
2021-04-15 23:18:05 +03:00
.
.TP
.B --stripes \fINumber
specifies the \fINumber\fP of devices to use for LV data. This does not include
2017-03-16 02:19:29 +03:00
the extra device lvm adds for storing parity blocks. A raid4 LV with
\fINumber\fP stripes requires \fINumber\fP+1 devices. \fINumber\fP must
be 2 or more.
2021-04-15 23:18:05 +03:00
.
.TP
.B --stripesize \fISize
specifies the \fISize\fP of each stripe in kilobytes. This is the amount of
2016-09-06 22:50:08 +03:00
data that is written to one device before moving to the next.
.P
\fIPVs\fP specifies the devices to use. If not specified, lvm will choose
\fINumber\fP+1 separate devices.
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
raid4 is called non-rotating parity because the parity blocks are always
2016-09-06 22:50:08 +03:00
stored on the same device.
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS raid5
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
raid5 is a form of striping that uses an extra device for storing parity
2017-03-03 00:24:19 +03:00
blocks. LV data and parity blocks are stored on each device, typically in
a rotating pattern for performance reasons. The LV data remains available
if one device fails. The parity is used to recalculate data that is lost
2017-03-30 01:44:04 +03:00
from a single device. The minimum number of devices required is 3 (unless
converting from 2 legged raid1 to reshape to more stripes; see reshaping).
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvcreate --type raid5
[\fB--stripes\fP \fINumber\fP \fB--stripesize\fP \fISize\fP]
2016-09-06 22:50:08 +03:00
\fIVG\fP
[\fIPVs\fP]
2021-04-15 23:18:05 +03:00
.
.TP
.B --stripes \fINumber
specifies the \fINumber\fP of devices to use for LV data. This does not include
2017-03-16 02:19:29 +03:00
the extra device lvm adds for storing parity blocks. A raid5 LV with
\fINumber\fP stripes requires \fINumber\fP+1 devices. \fINumber\fP must
be 2 or more.
2021-04-15 23:18:05 +03:00
.
.TP
.B --stripesize \fISize
specifies the \fISize\fP of each stripe in kilobytes. This is the amount of
2016-09-06 22:50:08 +03:00
data that is written to one device before moving to the next.
.P
\fIPVs\fP specifies the devices to use. If not specified, lvm will choose
\fINumber\fP+1 separate devices.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
raid5 is called rotating parity because the parity blocks are placed on
2017-03-27 17:45:48 +03:00
different devices in a round-robin sequence. There are variations of
2016-09-06 22:50:08 +03:00
raid5 with different algorithms for placing the parity blocks. The
default variant is raid5_ls (raid5 left symmetric, which is a rotating
2021-04-15 23:18:05 +03:00
parity 0 with data restart.) See \fBRAID5 VARIANTS\fP below.
.
2016-09-06 22:50:08 +03:00
.SS raid6
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
raid6 is a form of striping like raid5, but uses two extra devices for
2017-03-03 00:24:19 +03:00
parity blocks. LV data and parity blocks are stored on each device, typically
2020-10-03 14:52:37 +03:00
in a rotating pattern for performance reasons. The
2016-09-06 22:50:08 +03:00
LV data remains available if up to two devices fail. The parity is used
to recalculate data that is lost from one or two devices. The minimum
number of devices required is 5.
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvcreate --type raid6
[\fB--stripes\fP \fINumber\fP \fB--stripesize\fP \fISize\fP]
2016-09-06 22:50:08 +03:00
\fIVG\fP
[\fIPVs\fP]
2021-04-15 23:18:05 +03:00
.
.TP
.B --stripes \fINumber
specifies the \fINumber\fP of devices to use for LV data. This does not include
2017-03-16 02:19:29 +03:00
the extra two devices lvm adds for storing parity blocks. A raid6 LV with
\fINumber\fP stripes requires \fINumber\fP+2 devices. \fINumber\fP must be
3 or more.
2021-04-15 23:18:05 +03:00
.
.TP
.B --stripesize \fISize
specifies the \fISize\fP of each stripe in kilobytes. This is the amount of
2016-09-06 22:50:08 +03:00
data that is written to one device before moving to the next.
.P
\fIPVs\fP specifies the devices to use. If not specified, lvm will choose
\fINumber\fP+2 separate devices.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Like raid5, there are variations of raid6 with different algorithms for
placing the parity blocks. The default variant is raid6_zr (raid6 zero
restart, aka left symmetric, which is a rotating parity 0 with data
2021-04-15 23:18:05 +03:00
restart.) See \fBRAID6 VARIANTS\fP below.
.
2016-09-06 22:50:08 +03:00
.SS raid10
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
raid10 is a combination of raid1 and raid0, striping data across mirrored
devices. LV data remains available if one or more devices remains in each
mirror set. The minimum number of devices required is 4.
2021-04-15 23:18:05 +03:00
.TP
2017-03-27 17:45:48 +03:00
.B lvcreate --type raid10
[\fB--mirrors\fP \fINumberMirrors\fP]
2016-09-06 22:50:08 +03:00
.br
2017-03-27 17:45:48 +03:00
[\fB--stripes\fP \fINumberStripes\fP \fB--stripesize\fP \fISize\fP]
2016-09-06 22:50:08 +03:00
.br
\fIVG\fP
[\fIPVs\fP]
2021-04-15 23:18:05 +03:00
.
.TP
.B --mirrors \fINumberMirrors
2016-09-06 22:50:08 +03:00
specifies the number of mirror images within each stripe. e.g.
2017-03-27 17:45:48 +03:00
--mirrors 1 means there are two images of the data, the original and one
2016-09-06 22:50:08 +03:00
mirror image.
2021-04-15 23:18:05 +03:00
.
.TP
.B --stripes \fINumberStripes
2016-09-06 22:50:08 +03:00
specifies the total number of devices to use in all raid1 images (not the
number of raid1 devices to spread the LV across, even though that is the
effective result). The number of devices in each raid1 mirror will be
2021-04-15 23:18:05 +03:00
\fINumberStripes\fP/(\fINumberMirrors\fP+1), e.g. mirrors 1 and stripes 4 will stripe
2016-09-06 22:50:08 +03:00
data across two raid1 mirrors, where each mirror is devices.
2021-04-15 23:18:05 +03:00
.
.TP
.B --stripesize \fISize
specifies the \fISize\fP of each stripe in kilobytes. This is the amount of
2016-09-06 22:50:08 +03:00
data that is written to one device before moving to the next.
.P
\fIPVs\fP specifies the devices to use. If not specified, lvm will choose
the necessary devices. Devices are used to create mirrors in the
order listed, e.g. for mirrors 1, stripes 2, listing PV1 PV2 PV3 PV4
results in mirrors PV1/PV2 and PV3/PV4.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
RAID10 is not mirroring on top of stripes, which would be RAID01, which is
less tolerant of device failures.
2021-04-15 23:18:05 +03:00
.
.SS Configuration Options
.
There are a number of options in the LVM configuration file that affect
the behavior of RAID LVs. The tunable options are listed
below. A detailed description of each can be found in the LVM
configuration file itself.
.RS
mirror_segtype_default
.br
raid10_segtype_default
.br
raid_region_size
.br
raid_fault_policy
.br
activation_mode
.RE
.
.SS Monitoring
.
When a RAID LV is activated the \fBdmeventd\fP(8) process is started to
monitor the health of the LV. Various events detected in the kernel can
cause a notification to be sent from device-mapper to the monitoring
process, including device failures and synchronization completion (e.g.
for initialization or scrubbing).
.P
The LVM configuration file contains options that affect how the monitoring
process will respond to failure events (e.g. raid_fault_policy). It is
possible to turn on and off monitoring with lvchange, but it is not
recommended to turn this off unless you have a thorough knowledge of the
consequences.
.
.SS Synchronization
.
2017-03-16 02:19:29 +03:00
Synchronization is the process that makes all the devices in a RAID LV
consistent with each other.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
In a RAID1 LV, all mirror images should have the same data. When a new
mirror image is added, or a mirror image is missing data, then images need
to be synchronized. Data blocks are copied from an existing image to a
new or outdated image to make them match.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
In a RAID 4/5/6 LV, parity blocks and data blocks should match based on
the parity calculation. When the devices in a RAID LV change, the data
and parity blocks can become inconsistent and need to be synchronized.
Correct blocks are read, parity is calculated, and recalculated blocks are
written.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The RAID implementation keeps track of which parts of a RAID LV are
2017-03-30 01:44:04 +03:00
synchronized. When a RAID LV is first created and activated the first
synchronization is called initialization. A pointer stored in the raid
metadata keeps track of the initialization process thus allowing it to be
restarted after a deactivation of the RaidLV or a crash. Any writes to
the RaidLV dirties the respective region of the write intent bitmap which
allow for fast recovery of the regions after a crash. Without this, the
entire LV would need to be synchronized every time it was activated.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Automatic synchronization happens when a RAID LV is activated, but it is
usually partial because the bitmaps reduce the areas that are checked.
2017-03-17 01:10:57 +03:00
A full sync becomes necessary when devices in the RAID LV are replaced.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The synchronization status of a RAID LV is reported by the
2017-03-17 01:10:57 +03:00
following command, where "Cpy%Sync" = "100%" means sync is complete:
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B lvs -a -o name,sync_percent
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS Scrubbing
2021-04-15 23:18:05 +03:00
.
2017-03-16 02:19:29 +03:00
Scrubbing is a full scan of the RAID LV requested by a user.
2016-09-06 22:50:08 +03:00
Scrubbing can find problems that are missed by partial synchronization.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Scrubbing assumes that RAID metadata and bitmaps may be inaccurate, so it
verifies all RAID metadata, LV data, and parity blocks. Scrubbing can
find inconsistencies caused by hardware errors or degradation. These
kinds of problems may be undetected by automatic synchronization which
2017-03-27 17:45:48 +03:00
excludes areas outside of the RAID write-intent bitmap.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The command to scrub a RAID LV can operate in two different modes:
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvchange --syncaction
2016-09-06 22:50:08 +03:00
.BR check | repair
2017-04-11 21:13:49 +03:00
.I LV
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
.B check
2017-03-27 17:45:48 +03:00
Check mode is read-only and only detects inconsistent areas in the RAID
2016-09-06 22:50:08 +03:00
LV, it does not correct them.
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
.B repair
Repair mode checks and writes corrected blocks to synchronize any
inconsistent areas.
.P
Scrubbing can consume a lot of bandwidth and slow down application I/O on
the RAID LV. To control the I/O rate used for scrubbing, use:
2021-04-15 23:18:05 +03:00
.
.TP
.BR --maxrecoveryrate " " \fISize [k|UNIT]
2017-04-11 21:13:49 +03:00
Sets the maximum recovery rate for a RAID LV. \fISize\fP is specified as
2016-09-06 22:50:08 +03:00
an amount per second for each device in the array. If no suffix is given,
2017-04-11 21:13:49 +03:00
then KiB/sec/device is used. Setting the recovery rate to \fB0\fP
2016-09-06 22:50:08 +03:00
means it will be unbounded.
2021-04-15 23:18:05 +03:00
.
.TP
.BR --minrecoveryrate " " \fISize [k|UNIT]
2017-04-11 21:13:49 +03:00
Sets the minimum recovery rate for a RAID LV. \fISize\fP is specified as
2016-09-06 22:50:08 +03:00
an amount per second for each device in the array. If no suffix is given,
2017-04-11 21:13:49 +03:00
then KiB/sec/device is used. Setting the recovery rate to \fB0\fP
2016-09-06 22:50:08 +03:00
means it will be unbounded.
.P
To display the current scrubbing in progress on an LV, including
the syncaction mode and percent complete, run:
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B lvs -a -o name,raid_sync_action,sync_percent
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
After scrubbing is complete, to display the number of inconsistent blocks
found, run:
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B lvs -o name,raid_mismatch_count
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Also, if mismatches were found, the lvs attr field will display the letter
"m" (mismatch) in the 9th position, e.g.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvs -o name,vgname,segtype,attr vg/lv
LV VG Type Attr
lv vg raid1 Rwi-a-r-m-
2016-09-06 22:50:08 +03:00
.fi
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS Scrubbing Limitations
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
The \fBcheck\fP mode can only report the number of inconsistent blocks, it
cannot report which blocks are inconsistent. This makes it impossible to
know which device has errors, or if the errors affect file system data,
metadata or nothing at all.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The \fBrepair\fP mode can make the RAID LV data consistent, but it does
not know which data is correct. The result may be consistent but
incorrect data. When two different blocks of data must be made
consistent, it chooses the block from the device that would be used during
2020-10-03 14:52:37 +03:00
RAID initialization. However, if the PV holding corrupt data is known,
2017-03-27 17:45:48 +03:00
lvchange --rebuild can be used in place of scrubbing to reconstruct the
2017-03-16 02:19:29 +03:00
data on the bad device.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Future developments might include:
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Allowing a user to choose the correct version of data during repair.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Using a majority of devices to determine the correct version of data to
2017-03-16 02:19:29 +03:00
use in a 3-way RAID1 or RAID6 LV.
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
Using a checksumming device to pin-point when and where an error occurs,
2016-09-06 22:50:08 +03:00
allowing it to be rewritten.
2021-04-15 23:18:05 +03:00
.
.SS SubLVs
.
2016-09-06 22:50:08 +03:00
An LV is often a combination of other hidden LVs called SubLVs. The
SubLVs either use physical devices, or are built from other SubLVs
themselves. SubLVs hold LV data blocks, RAID parity blocks, and RAID
2017-03-27 17:45:48 +03:00
metadata. SubLVs are generally hidden, so the lvs -a option is required
2017-03-16 02:19:29 +03:00
to display them:
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B lvs -a -o name,segtype,devices
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
SubLV names begin with the visible LV name, and have an automatic suffix
indicating its role:
2021-04-15 23:18:05 +03:00
.
.ipbu_npd
2016-09-06 22:50:08 +03:00
SubLVs holding LV data or parity blocks have the suffix _rimage_#.
2021-04-15 23:18:05 +03:00
.br
2016-09-06 22:50:08 +03:00
These SubLVs are sometimes referred to as DataLVs.
2021-04-15 23:18:05 +03:00
.
.ipbu_npd
2016-09-06 22:50:08 +03:00
SubLVs holding RAID metadata have the suffix _rmeta_#. RAID metadata
includes superblock information, RAID type, bitmap, and device health
2021-04-15 23:18:05 +03:00
information.
.br
These SubLVs are sometimes referred to as MetaLVs.
2016-09-06 22:50:08 +03:00
.P
SubLVs are an internal implementation detail of LVM. The way they are
used, constructed and named may change.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The following examples show the SubLV arrangement for each of the basic
RAID LV types, using the fewest number of devices allowed for each.
2021-04-15 23:18:05 +03:00
.P
.I Examples
.P
2016-09-06 22:50:08 +03:00
.B raid0
.br
Each rimage SubLV holds a portion of LV data. No parity is used.
No RAID metadata is used.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvcreate --type raid0 --stripes 2 --name lvr0 ...
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -a -o name,segtype,devices
2016-09-06 22:50:08 +03:00
lvr0 raid0 lvr0_rimage_0(0),lvr0_rimage_1(0)
[lvr0_rimage_0] linear /dev/sda(...)
[lvr0_rimage_1] linear /dev/sdb(...)
.fi
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B raid1
.br
Each rimage SubLV holds a complete copy of LV data. No parity is used.
Each rmeta SubLV holds RAID metadata.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvcreate --type raid1 --mirrors 1 --name lvr1 ...
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -a -o name,segtype,devices
2016-09-06 22:50:08 +03:00
lvr1 raid1 lvr1_rimage_0(0),lvr1_rimage_1(0)
[lvr1_rimage_0] linear /dev/sda(...)
[lvr1_rimage_1] linear /dev/sdb(...)
[lvr1_rmeta_0] linear /dev/sda(...)
[lvr1_rmeta_1] linear /dev/sdb(...)
.fi
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B raid4
.br
2017-03-30 01:44:04 +03:00
At least three rimage SubLVs each hold a portion of LV data and one rimage SubLV
2016-09-06 22:50:08 +03:00
holds parity. Each rmeta SubLV holds RAID metadata.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvcreate --type raid4 --stripes 2 --name lvr4 ...
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -a -o name,segtype,devices
2016-09-06 22:50:08 +03:00
lvr4 raid4 lvr4_rimage_0(0),\\
lvr4_rimage_1(0),\\
lvr4_rimage_2(0)
[lvr4_rimage_0] linear /dev/sda(...)
[lvr4_rimage_1] linear /dev/sdb(...)
[lvr4_rimage_2] linear /dev/sdc(...)
[lvr4_rmeta_0] linear /dev/sda(...)
[lvr4_rmeta_1] linear /dev/sdb(...)
[lvr4_rmeta_2] linear /dev/sdc(...)
.fi
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B raid5
.br
2020-10-03 14:52:37 +03:00
At least three rimage SubLVs each typically hold a portion of LV data and parity
2017-03-30 01:44:04 +03:00
(see section on raid5)
2016-09-06 22:50:08 +03:00
Each rmeta SubLV holds RAID metadata.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvcreate --type raid5 --stripes 2 --name lvr5 ...
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -a -o name,segtype,devices
2016-09-06 22:50:08 +03:00
lvr5 raid5 lvr5_rimage_0(0),\\
lvr5_rimage_1(0),\\
lvr5_rimage_2(0)
2017-03-10 00:26:22 +03:00
[lvr5_rimage_0] linear /dev/sda(...)
[lvr5_rimage_1] linear /dev/sdb(...)
[lvr5_rimage_2] linear /dev/sdc(...)
[lvr5_rmeta_0] linear /dev/sda(...)
[lvr5_rmeta_1] linear /dev/sdb(...)
[lvr5_rmeta_2] linear /dev/sdc(...)
2016-09-06 22:50:08 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B raid6
.br
2017-03-30 01:44:04 +03:00
At least five rimage SubLVs each typically hold a portion of LV data and parity.
(see section on raid6)
2016-09-06 22:50:08 +03:00
Each rmeta SubLV holds RAID metadata.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvcreate --type raid6 --stripes 3 --name lvr6
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -a -o name,segtype,devices
2016-09-06 22:50:08 +03:00
lvr6 raid6 lvr6_rimage_0(0),\\
lvr6_rimage_1(0),\\
lvr6_rimage_2(0),\\
lvr6_rimage_3(0),\\
lvr6_rimage_4(0),\\
lvr6_rimage_5(0)
[lvr6_rimage_0] linear /dev/sda(...)
[lvr6_rimage_1] linear /dev/sdb(...)
[lvr6_rimage_2] linear /dev/sdc(...)
[lvr6_rimage_3] linear /dev/sdd(...)
[lvr6_rimage_4] linear /dev/sde(...)
[lvr6_rimage_5] linear /dev/sdf(...)
[lvr6_rmeta_0] linear /dev/sda(...)
[lvr6_rmeta_1] linear /dev/sdb(...)
[lvr6_rmeta_2] linear /dev/sdc(...)
[lvr6_rmeta_3] linear /dev/sdd(...)
[lvr6_rmeta_4] linear /dev/sde(...)
[lvr6_rmeta_5] linear /dev/sdf(...)
2017-04-11 18:55:02 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B raid10
.br
2017-03-30 01:44:04 +03:00
At least four rimage SubLVs each hold a portion of LV data. No parity is used.
2016-09-06 22:50:08 +03:00
Each rmeta SubLV holds RAID metadata.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvcreate --type raid10 --stripes 2 --mirrors 1 --name lvr10
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -a -o name,segtype,devices
2016-09-06 22:50:08 +03:00
lvr10 raid10 lvr10_rimage_0(0),\\
lvr10_rimage_1(0),\\
lvr10_rimage_2(0),\\
lvr10_rimage_3(0)
[lvr10_rimage_0] linear /dev/sda(...)
[lvr10_rimage_1] linear /dev/sdb(...)
[lvr10_rimage_2] linear /dev/sdc(...)
[lvr10_rimage_3] linear /dev/sdd(...)
[lvr10_rmeta_0] linear /dev/sda(...)
[lvr10_rmeta_1] linear /dev/sdb(...)
[lvr10_rmeta_2] linear /dev/sdc(...)
[lvr10_rmeta_3] linear /dev/sdd(...)
.fi
2021-04-15 23:18:05 +03:00
.
.SH DEVICE FAILURE
.
2016-09-06 22:50:08 +03:00
Physical devices in a RAID LV can fail or be lost for multiple reasons.
A device could be disconnected, permanently failed, or temporarily
disconnected. The purpose of RAID LVs (levels 1 and higher) is to
continue operating in a degraded mode, without losing LV data, even after
a device fails. The number of devices that can fail without the loss of
LV data depends on the RAID level:
2021-04-15 23:18:05 +03:00
.
.ipbu
2016-09-06 22:50:08 +03:00
RAID0 (striped) LVs cannot tolerate losing any devices. LV data will be
lost if any devices fail.
2021-04-15 23:18:05 +03:00
.
.ipbu
2016-09-06 22:50:08 +03:00
RAID1 LVs can tolerate losing all but one device without LV data loss.
2021-04-15 23:18:05 +03:00
.
.ipbu
2016-09-06 22:50:08 +03:00
RAID4 and RAID5 LVs can tolerate losing one device without LV data loss.
2021-04-15 23:18:05 +03:00
.
.ipbu
2016-09-06 22:50:08 +03:00
RAID6 LVs can tolerate losing two devices without LV data loss.
2021-04-15 23:18:05 +03:00
.
.ipbu
2017-03-30 01:44:04 +03:00
RAID10 is variable, and depends on which devices are lost. It stripes
across multiple mirror groups with raid1 layout thus it can tolerate
losing all but one device in each of these groups without LV data loss.
2016-09-06 22:50:08 +03:00
.P
2017-03-27 17:45:48 +03:00
If a RAID LV is missing devices, or has other device-related problems, lvs
2016-09-06 22:50:08 +03:00
reports this in the health_status (and attr) fields:
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B lvs -o name,lv_health_status
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
.B partial
Devices are missing from the LV. This is also indicated by the letter "p"
(partial) in the 9th position of the lvs attr field.
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
.B refresh needed
A device was temporarily missing but has returned. The LV needs to be
refreshed to use the device again (which will usually require
partial synchronization). This is also indicated by the letter "r" (refresh
needed) in the 9th position of the lvs attr field. See
\fBRefreshing an LV\fP. This could also indicate a problem with the
device, in which case it should be be replaced, see
\fBReplacing Devices\fP.
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
.B mismatches exist
See
.BR Scrubbing .
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Most commands will also print a warning if a device is missing, e.g.
.br
.nf
2017-03-27 17:45:48 +03:00
WARNING: Device for PV uItL3Z-wBME-DQy0-... not found or rejected ...
2016-09-06 22:50:08 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
This warning will go away if the device returns or is removed from the
2017-03-27 17:45:48 +03:00
VG (see \fBvgreduce --removemissing\fP).
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS Activating an LV with missing devices
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
A RAID LV that is missing devices may be activated or not, depending on
the "activation mode" used in lvchange:
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvchange -ay --activationmode
2017-04-11 21:13:49 +03:00
.BR complete | degraded | partial
.I LV
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
.B complete
The LV is only activated if all devices are present.
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
.B degraded
The LV is activated with missing devices if the RAID level can
tolerate the number of missing devices without LV data loss.
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
.B partial
The LV is always activated, even if portions of the LV data are missing
because of the missing device(s). This should only be used to perform
2017-03-16 02:19:29 +03:00
extreme recovery or repair operations.
2021-04-15 23:18:05 +03:00
.P
Default activation mode when not specified by the command:
.br
2016-09-06 22:50:08 +03:00
.BR lvm.conf (5)
.B activation/activation_mode
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The default value is printed by:
2021-04-15 23:18:05 +03:00
.br
# lvmconfig --type default activation/activation_mode
.
2016-09-06 22:50:08 +03:00
.SS Replacing Devices
2021-04-15 23:18:05 +03:00
.
2017-03-16 02:19:29 +03:00
Devices in a RAID LV can be replaced by other devices in the VG. When
2016-09-06 22:50:08 +03:00
replacing devices that are no longer visible on the system, use lvconvert
2017-03-27 17:45:48 +03:00
--repair. When replacing devices that are still visible, use lvconvert
--replace. The repair command will attempt to restore the same number
2016-09-06 22:50:08 +03:00
of data LVs that were previously in the LV. The replace option can be
repeated to replace multiple PVs. Replacement devices can be optionally
listed with either option.
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvconvert --repair
2017-04-11 21:13:49 +03:00
.I LV
2016-09-06 22:50:08 +03:00
[\fINewPVs\fP]
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvconvert --replace
2016-09-06 22:50:08 +03:00
\fIOldPV\fP
2017-04-11 21:13:49 +03:00
.I LV
2016-09-06 22:50:08 +03:00
[\fINewPV\fP]
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B lvconvert
2017-03-27 17:45:48 +03:00
.B --replace
2016-09-06 22:50:08 +03:00
\fIOldPV1\fP
2017-03-27 17:45:48 +03:00
.B --replace
2016-09-06 22:50:08 +03:00
\fIOldPV2\fP
...
2017-04-11 21:13:49 +03:00
.I LV
2016-09-06 22:50:08 +03:00
[\fINewPVs\fP]
2021-04-15 23:18:05 +03:00
.P
New devices require synchronization with existing devices.
.br
See
2016-09-06 22:50:08 +03:00
.BR Synchronization .
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS Refreshing an LV
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
Refreshing a RAID LV clears any transient device failures (device was
temporarily disconnected) and returns the LV to its fully redundant mode.
Restoring a device will usually require at least partial synchronization
(see \fBSynchronization\fP). Failure to clear a transient failure results
in the RAID LV operating in degraded mode until it is reactivated. Use
the lvchange command to refresh an LV:
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvchange --refresh
2017-04-11 21:13:49 +03:00
.I LV
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
# lvs -o name,vgname,segtype,attr,size vg
2017-04-11 23:23:48 +03:00
LV VG Type Attr LSize
lv vg raid1 Rwi-a-r-r- 100.00g
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvchange --refresh vg/lv
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
# lvs -o name,vgname,segtype,attr,size vg
2017-04-11 23:23:48 +03:00
LV VG Type Attr LSize
lv vg raid1 Rwi-a-r--- 100.00g
2016-09-06 22:50:08 +03:00
.fi
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS Automatic repair
2021-04-15 23:18:05 +03:00
.
2017-03-27 17:45:48 +03:00
If a device in a RAID LV fails, device-mapper in the kernel notifies the
2016-09-06 22:50:08 +03:00
.BR dmeventd (8)
monitoring process (see \fBMonitoring\fP).
dmeventd can be configured to automatically respond using:
2021-04-15 23:18:05 +03:00
.br
2016-09-06 22:50:08 +03:00
.BR lvm.conf (5)
.B activation/raid_fault_policy
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Possible settings are:
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
.B warn
A warning is added to the system log indicating that a device has
failed in the RAID LV. It is left to the user to repair the LV, e.g.
replace failed devices.
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
.B allocate
dmeventd automatically attempts to repair the LV using spare devices
2017-03-16 02:19:29 +03:00
in the VG. Note that even a transient failure is treated as a permanent
failure under this setting. A new device is allocated and full
synchronization is started.
2021-04-15 23:18:05 +03:00
.P
The specific command run by \fBdmeventd\fP(8) to warn or repair is:
2016-09-06 22:50:08 +03:00
.br
2017-03-27 17:45:48 +03:00
.B lvconvert --repair --use-policies
2017-04-11 21:13:49 +03:00
.I LV
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS Corrupted Data
2021-04-15 23:18:05 +03:00
.
2017-03-16 02:19:29 +03:00
Data on a device can be corrupted due to hardware errors without the
device ever being disconnected or there being any fault in the software.
2016-09-06 22:50:08 +03:00
This should be rare, and can be detected (see \fBScrubbing\fP).
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.SS Rebuild specific PVs
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
If specific PVs in a RAID LV are known to have corrupt data, the data on
those PVs can be reconstructed with:
2021-04-15 23:18:05 +03:00
.P
2017-04-11 21:13:49 +03:00
.B lvchange --rebuild
.I PV
.I LV
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The rebuild option can be repeated with different PVs to replace the data
on multiple PVs.
2021-04-15 23:18:05 +03:00
.
.SH DATA INTEGRITY
.
2019-11-21 01:07:27 +03:00
The device mapper integrity target can be used in combination with RAID
levels 1,4,5,6,10 to detect and correct data corruption in RAID images. A
dm-integrity layer is placed above each RAID image, and an extra sub LV is
created to hold integrity metadata (data checksums) for each RAID image.
When data is read from an image, integrity checksums are used to detect
corruption. If detected, dm-raid reads the data from another (good) image
to return to the caller. dm-raid will also automatically write the good
data back to the image with bad data to correct the corruption.
2021-04-15 23:18:05 +03:00
.P
2019-11-21 01:07:27 +03:00
When creating a RAID LV with integrity, or adding integrity, space is
required for integrity metadata. Every 500MB of LV data requires an
additional 4MB to be allocated for integrity metadata, for each RAID
image.
2021-04-15 23:18:05 +03:00
.P
2019-11-21 01:07:27 +03:00
Create a RAID LV with integrity:
2021-04-15 23:18:05 +03:00
.br
.B lvcreate --type raidN --raidintegrity y
.P
2019-11-21 01:07:27 +03:00
Add integrity to an existing RAID LV:
2021-04-15 23:18:05 +03:00
.br
.B lvconvert --raidintegrity y \fILV
.P
2019-11-21 01:07:27 +03:00
Remove integrity from a RAID LV:
2021-04-15 23:18:05 +03:00
.br
.B lvconvert --raidintegrity n \fILV
.
2019-11-21 01:07:27 +03:00
.SS Integrity options
2021-04-15 23:18:05 +03:00
.
.TP
.BR --raidintegritymode " " journal | bitmap
2019-11-21 01:07:27 +03:00
Use a journal (default) or bitmap for keeping integrity checksums
consistent in case of a crash. The bitmap areas are recalculated after a
crash, so corruption in those areas would not be detected. A journal does
not have this problem. The journal mode doubles writes to storage, but
can improve performance for scattered writes packed into a single journal
write. bitmap mode can in theory achieve full write throughput of the
device, but would not benefit from the potential scattered write
optimization.
2021-04-15 23:18:05 +03:00
.
.TP
.BR --raidintegrityblocksize " " 512 | 1024 | 2048 | 4096
2019-11-21 01:07:27 +03:00
The block size to use for dm-integrity on raid images. The integrity
block size should usually match the device logical block size, or the file
system sector/block sizes. It may be less than the file system
sector/block size, but not less than the device logical block size.
Possible values: 512, 1024, 2048, 4096.
2021-04-15 23:18:05 +03:00
.
2024-08-05 21:20:58 +03:00
.TP
.BR --integritysettings " " key=val
dm-integrity kernel tunable options can be specified here.
Settings can be included with lvcreate or lvconvert when integrity is first
enabled, or changed with lvchange on an existing, inactive LV.
See kernel documentation for descriptions of tunable options.
Repeat the option to set multiple values.
Use lvs -a -o integritysettings VG/LV_rimage_N to display configured values.
Use lvchange --integritysettings "" to clear
all configured values (dm-integrity will use its defaults.)
.P
.
2019-11-21 01:07:27 +03:00
.SS Integrity initialization
2021-04-15 23:18:05 +03:00
.
2019-11-21 01:07:27 +03:00
When integrity is added to an LV, the kernel needs to initialize the
integrity metadata (checksums) for all blocks in the LV. The data
corruption checking performed by dm-integrity will only operate on areas
of the LV that are already initialized. The progress of integrity
initialization is reported by the "syncpercent" LV reporting field (and
under the Cpy%Sync lvs column.)
2021-04-15 23:18:05 +03:00
.
2019-11-21 01:07:27 +03:00
.SS Integrity limitations
2021-04-15 23:18:05 +03:00
.
2019-11-21 01:07:27 +03:00
To work around some limitations, it is possible to remove integrity from
the LV, make the change, then add integrity again. (Integrity metadata
would need to initialized when added again.)
2021-04-15 23:18:05 +03:00
.P
2019-11-21 01:07:27 +03:00
LVM must be able to allocate the integrity metadata sub LV on a single PV
that is already in use by the associated RAID image. This can potentially
cause a problem during lvextend if the original PV holding the image and
integrity metadata is full. To work around this limitation, remove
integrity, extend the LV, and add integrity again.
2021-04-15 23:18:05 +03:00
.P
2019-11-21 01:07:27 +03:00
Additional RAID images can be added to raid1 LVs, but not to other raid
levels.
2021-04-15 23:18:05 +03:00
.P
2019-11-21 01:07:27 +03:00
A raid1 LV with integrity cannot be converted to linear (remove integrity
to do this.)
2021-04-15 23:18:05 +03:00
.P
2019-11-21 01:07:27 +03:00
RAID LVs with integrity cannot yet be used as sub LVs with other LV types.
2021-04-15 23:18:05 +03:00
.P
2019-11-21 01:07:27 +03:00
The following are not yet permitted on RAID LVs with integrity: lvreduce,
2023-06-05 18:43:51 +03:00
pvmove, lvconvert --splitmirrors, lvchange --syncaction, lvchange --rebuild.
2021-04-15 23:18:05 +03:00
.
.SH RAID1 TUNING
.
2016-09-06 22:50:08 +03:00
A RAID1 LV can be tuned so that certain devices are avoided for reading
while all devices are still written to.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B lvchange
2017-03-27 17:45:48 +03:00
.BR -- [ raid ] writemostly
2017-04-11 21:13:49 +03:00
\fIPV\fP[\fB:y\fP|\fBn\fP|\fBt\fP]
.I LV
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The specified device will be marked as "write mostly", which means that
reading from this device will be avoided, and other devices will be
preferred for reading (unless no other devices are available.) This
minimizes the I/O to the specified device.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
If the PV name has no suffix, the write mostly attribute is set. If the
PV name has the suffix \fB:n\fP, the write mostly attribute is cleared,
and the suffix \fB:t\fP toggles the current setting.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The write mostly option can be repeated on the command line to change
multiple devices at once.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
To report the current write mostly setting, the lvs attr field will show
the letter "w" in the 9th position when write mostly is set:
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B lvs -a -o name,attr
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
When a device is marked write mostly, the maximum number of outstanding
writes to that device can be configured. Once the maximum is reached,
further writes become synchronous. When synchronous, a write to the LV
will not complete until writes to all the mirror images are complete.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B lvchange
2017-03-27 17:45:48 +03:00
.BR -- [ raid ] writebehind
2017-04-11 21:13:49 +03:00
.I Number
.I LV
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
To report the current write behind setting, run:
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.B lvs -o name,raid_write_behind
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
When write behind is not configured, or set to 0, all LV writes are
synchronous.
2021-04-15 23:18:05 +03:00
.
.SH RAID TAKEOVER
.
2016-09-06 22:50:08 +03:00
RAID takeover is converting a RAID LV from one RAID level to another, e.g.
raid5 to raid6. Changing the RAID level is usually done to increase or
2017-03-17 01:10:57 +03:00
decrease resilience to device failures or to restripe LVs. This is done
using lvconvert and specifying the new RAID level as the LV type:
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvconvert --type
2016-09-06 22:50:08 +03:00
.I RaidLevel
2017-04-11 21:13:49 +03:00
.I LV
2016-09-06 22:50:08 +03:00
[\fIPVs\fP]
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The most common and recommended RAID takeover conversions are:
2021-04-15 23:18:05 +03:00
.
.TP
.BR linear " to " raid1
2016-09-06 22:50:08 +03:00
Linear is a single image of LV data, and
converting it to raid1 adds a mirror image which is a direct copy of the
original linear image.
2021-04-15 23:18:05 +03:00
.
.TP
.BR striped / raid0 " to " raid4 / 5 / 6
2016-09-06 22:50:08 +03:00
Adding parity devices to a
striped volume results in raid4/5/6.
.P
Unnatural conversions that are not recommended include converting between
2017-03-27 17:45:48 +03:00
striped and non-striped types. This is because file systems often
2016-09-06 22:50:08 +03:00
optimize I/O patterns based on device striping values. If those values
change, it can decrease performance.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Converting to a higher RAID level requires allocating new SubLVs to hold
RAID metadata, and new SubLVs to hold parity blocks for LV data.
Converting to a lower RAID level removes the SubLVs that are no longer
needed.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
Conversion often requires full synchronization of the RAID LV (see
\fBSynchronization\fP). Converting to RAID1 requires copying all LV data
2017-03-30 01:44:04 +03:00
blocks to N new images on new devices. Converting to a parity RAID level
2016-09-06 22:50:08 +03:00
requires reading all LV data blocks, calculating parity, and writing the
2017-03-30 01:44:04 +03:00
new parity blocks. Synchronization can take a long time depending on the
throughpout of the devices used and the size of the RaidLV. It can degrade
2021-04-15 23:18:05 +03:00
performance. Rate controls also apply to conversion; see
\fB--minrecoveryrate\fP and \fB--maxrecoveryrate\fP.
.P
2017-03-11 00:40:22 +03:00
Warning: though it is possible to create \fBstriped\fP LVs with up to 128 stripes,
a maximum of 64 stripes can be converted to \fBraid0\fP, 63 to \fBraid4/5\fP and
62 to \fBraid6\fP because of the added parity SubLVs.
A \fBstriped\fP LV with a maximum of 32 stripes can be converted to \fBraid10\fP.
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
.P
2021-04-15 23:18:05 +03:00
.
2016-09-06 22:50:08 +03:00
The following takeover conversions are currently possible:
.br
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-11 00:40:22 +03:00
between striped and raid0.
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
between linear and raid1.
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-11 00:40:22 +03:00
between mirror and raid1.
2021-04-15 23:18:05 +03:00
.ipbu
2017-05-19 00:47:37 +03:00
between raid1 with two images and raid4/5.
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-11 00:40:22 +03:00
between striped/raid0 and raid4.
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-11 00:40:22 +03:00
between striped/raid0 and raid5.
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-11 00:40:22 +03:00
between striped/raid0 and raid6.
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-11 00:40:22 +03:00
between raid4 and raid5.
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-11 00:40:22 +03:00
between raid4/raid5 and raid6.
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-11 00:40:22 +03:00
between striped/raid0 and raid10.
2021-04-15 23:18:05 +03:00
.ipbu
2017-04-11 18:55:02 +03:00
between striped and raid4.
2021-04-15 23:18:05 +03:00
.PD
.
2017-05-19 00:47:37 +03:00
.SS Indirect conversions
2021-04-15 23:18:05 +03:00
.
2017-05-19 00:47:37 +03:00
Converting from one raid level to another may require multiple steps,
converting first to intermediate raid levels.
2021-04-15 23:18:05 +03:00
.P
.BR linear " to " raid6
.P
2017-05-19 00:47:37 +03:00
To convert an LV from linear to raid6:
.br
1. convert to raid1 with two images
.br
2. convert to raid5 (internally raid5_ls) with two images
.br
3. convert to raid5 with three or more stripes (reshape)
.br
4. convert to raid6 (internally raid6_ls_6)
.br
5. convert to raid6 (internally raid6_zr, reshape)
2021-04-15 23:18:05 +03:00
.P
2017-05-19 00:47:37 +03:00
The commands to perform the steps above are:
.br
1. lvconvert --type raid1 --mirrors 1 LV
.br
2. lvconvert --type raid5 LV
.br
3. lvconvert --stripes 3 LV
.br
4. lvconvert --type raid6 LV
.br
5. lvconvert --type raid6 LV
2021-04-15 23:18:05 +03:00
.P
2017-05-19 00:47:37 +03:00
The final conversion from raid6_ls_6 to raid6_zr is done to avoid the
potential write/recovery performance reduction in raid6_ls_6 because of
the dedicated parity device. raid6_zr rotates data and parity blocks to
avoid this.
2021-04-15 23:18:05 +03:00
.P
.BR linear " to " striped
.P
2017-05-22 22:28:04 +03:00
To convert an LV from linear to striped:
.br
1. convert to raid1 with two images
.br
2. convert to raid5_n
.br
3. convert to raid5_n with five 128k stripes (reshape)
.br
4. convert raid5_n to striped
2021-04-15 23:18:05 +03:00
.P
2017-05-22 22:28:04 +03:00
The commands to perform the steps above are:
.br
1. lvconvert --type raid1 --mirrors 1 LV
.br
2. lvconvert --type raid5_n LV
.br
3. lvconvert --stripes 5 --stripesize 128k LV
.br
4. lvconvert --type striped LV
2021-04-15 23:18:05 +03:00
.P
2017-05-22 22:28:04 +03:00
The raid5_n type in step 2 is used because it has dedicated parity SubLVs
at the end, and can be converted to striped directly. The stripe size is
increased in step 3 to add extra space for the conversion process. This
step grows the LV size by a factor of five. After conversion, this extra
space can be reduced (or used to grow the file system using the LV).
2021-04-15 23:18:05 +03:00
.P
2017-05-22 22:28:04 +03:00
Reversing these steps will convert a striped LV to linear.
2021-04-15 23:18:05 +03:00
.P
.BR raid6 " to " striped
.P
2017-05-22 22:28:04 +03:00
To convert an LV from raid6_nr to striped:
.br
1. convert to raid6_n_6
.br
2. convert to striped
2021-04-15 23:18:05 +03:00
.P
2017-05-22 22:28:04 +03:00
The commands to perform the steps above are:
.br
1. lvconvert --type raid6_n_6 LV
.br
2. lvconvert --type striped LV
2021-04-15 23:18:05 +03:00
.P
.I Examples
.P
2017-05-19 00:47:37 +03:00
Converting an LV from \fBlinear\fP to \fBraid1\fP.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
# lvs -a -o name,segtype,size vg
LV Type LSize
lv linear 300.00g
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
# lvconvert --type raid1 --mirrors 1 vg/lv
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
# lvs -a -o name,segtype,size vg
LV Type LSize
lv raid1 300.00g
[lv_rimage_0] linear 300.00g
[lv_rimage_1] linear 300.00g
[lv_rmeta_0] linear 3.00m
[lv_rmeta_1] linear 3.00m
.fi
2021-04-15 23:18:05 +03:00
.P
2017-05-19 00:47:37 +03:00
Converting an LV from \fBmirror\fP to \fBraid1\fP.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
# lvs -a -o name,segtype,size vg
LV Type LSize
lv mirror 100.00g
[lv_mimage_0] linear 100.00g
[lv_mimage_1] linear 100.00g
[lv_mlog] linear 3.00m
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
# lvconvert --type raid1 vg/lv
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
# lvs -a -o name,segtype,size vg
LV Type LSize
lv raid1 100.00g
[lv_rimage_0] linear 100.00g
[lv_rimage_1] linear 100.00g
[lv_rmeta_0] linear 3.00m
[lv_rmeta_1] linear 3.00m
.fi
2021-04-15 23:18:05 +03:00
.P
2017-05-19 00:47:37 +03:00
Converting an LV from \fBlinear\fP to \fBraid1\fP (with 3 images).
2021-04-15 23:18:05 +03:00
.P
2016-09-06 23:13:59 +03:00
.nf
2017-03-27 17:45:48 +03:00
# lvconvert --type raid1 --mirrors 2 vg/lv
2016-09-06 23:13:59 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-05-19 00:47:37 +03:00
Converting an LV from \fBstriped\fP (with 4 stripes) to \fBraid6_n_6\fP.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
2017-03-27 17:45:48 +03:00
# lvcreate --stripes 4 -L64M -n lv vg
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
# lvconvert --type raid6 vg/lv
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
# lvs -a -o lv_name,segtype,sync_percent,data_copies
2017-03-09 20:48:30 +03:00
LV Type Cpy%Sync #Cpy
lv raid6_n_6 100.00 3
[lv_rimage_0] linear
[lv_rimage_1] linear
[lv_rimage_2] linear
[lv_rimage_3] linear
[lv_rimage_4] linear
[lv_rimage_5] linear
[lv_rmeta_0] linear
[lv_rmeta_1] linear
[lv_rmeta_2] linear
[lv_rmeta_3] linear
[lv_rmeta_4] linear
[lv_rmeta_5] linear
2016-09-06 22:50:08 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
This convert begins by allocating MetaLVs (rmeta_#) for each of the
existing stripe devices. It then creates 2 additional MetaLV/DataLV pairs
(rmeta_#/rimage_#) for dedicated raid6 parity.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
If rotating data/parity is required, such as with raid6_nr, it must be
done by reshaping (see below).
2021-04-15 23:18:05 +03:00
.
.SH RAID RESHAPING
.
2016-09-06 22:50:08 +03:00
RAID reshaping is changing attributes of a RAID LV while keeping the same
2017-03-03 00:24:19 +03:00
RAID level. This includes changing RAID layout, stripe size, or number of
2016-09-06 22:50:08 +03:00
stripes.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
When changing the RAID layout or stripe size, no new SubLVs (MetaLVs or
DataLVs) need to be allocated, but DataLVs are extended by a small amount
(typically 1 extent). The extra space allows blocks in a stripe to be
2017-03-16 02:19:29 +03:00
updated safely, and not be corrupted in case of a crash. If a crash occurs,
2016-09-06 22:50:08 +03:00
reshaping can just be restarted.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
(If blocks in a stripe were updated in place, a crash could leave them
partially updated and corrupted. Instead, an existing stripe is quiesced,
read, changed in layout, and the new stripe written to free space. Once
that is done, the new stripe is unquiesced and used.)
2021-04-15 23:18:05 +03:00
.P
.I Examples
.br
2017-05-19 00:47:37 +03:00
(Command output shown in examples may change.)
2021-04-15 23:18:05 +03:00
.P
2017-05-19 00:47:37 +03:00
Converting raid6_n_6 to raid6_nr with rotating data/parity.
2021-04-15 23:18:05 +03:00
.P
2017-03-03 00:24:19 +03:00
This conversion naturally follows a previous conversion from striped/raid0
to raid6_n_6 (shown above). It completes the transition to a more
2016-09-06 22:50:08 +03:00
traditional RAID6.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
# lvs -o lv_name,segtype,sync_percent,data_copies
2017-03-09 20:48:30 +03:00
LV Type Cpy%Sync #Cpy
lv raid6_n_6 100.00 3
[lv_rimage_0] linear
[lv_rimage_1] linear
[lv_rimage_2] linear
[lv_rimage_3] linear
[lv_rimage_4] linear
[lv_rimage_5] linear
[lv_rmeta_0] linear
[lv_rmeta_1] linear
[lv_rmeta_2] linear
[lv_rmeta_3] linear
[lv_rmeta_4] linear
[lv_rmeta_5] linear
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
# lvconvert --type raid6_nr vg/lv
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
# lvs -a -o lv_name,segtype,sync_percent,data_copies
2017-03-09 20:48:30 +03:00
LV Type Cpy%Sync #Cpy
lv raid6_nr 100.00 3
[lv_rimage_0] linear
[lv_rimage_0] linear
[lv_rimage_1] linear
[lv_rimage_1] linear
[lv_rimage_2] linear
[lv_rimage_2] linear
[lv_rimage_3] linear
[lv_rimage_3] linear
[lv_rimage_4] linear
[lv_rimage_5] linear
[lv_rmeta_0] linear
[lv_rmeta_1] linear
[lv_rmeta_2] linear
[lv_rmeta_3] linear
[lv_rmeta_4] linear
[lv_rmeta_5] linear
2016-09-06 22:50:08 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The DataLVs are larger (additional segment in each) which provides space
2017-03-27 17:45:48 +03:00
for out-of-place reshaping. The result is:
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
.nf
# lvs -a -o lv_name,segtype,seg_pe_ranges,dataoffset
2017-03-10 00:26:22 +03:00
LV Type PE Ranges DOff
2017-03-09 20:48:30 +03:00
lv raid6_nr lv_rimage_0:0-32 \\
lv_rimage_1:0-32 \\
lv_rimage_2:0-32 \\
lv_rimage_3:0-32
[lv_rimage_0] linear /dev/sda:0-31 2048
[lv_rimage_0] linear /dev/sda:33-33
[lv_rimage_1] linear /dev/sdaa:0-31 2048
[lv_rimage_1] linear /dev/sdaa:33-33
[lv_rimage_2] linear /dev/sdab:1-33 2048
[lv_rimage_3] linear /dev/sdac:1-33 2048
[lv_rmeta_0] linear /dev/sda:32-32
[lv_rmeta_1] linear /dev/sdaa:32-32
[lv_rmeta_2] linear /dev/sdab:0-0
[lv_rmeta_3] linear /dev/sdac:0-0
2016-09-06 22:50:08 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
All segments with PE ranges '33-33' provide the out-of-place reshape space.
2016-09-06 22:50:08 +03:00
The dataoffset column shows that the data was moved from initial offset 0 to
2048 sectors on each component DataLV.
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
For performance reasons the raid6_nr RaidLV can be restriped.
2017-03-27 17:45:48 +03:00
Convert it from 3-way striped to 5-way-striped.
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
.nf
2017-04-11 18:55:02 +03:00
# lvconvert --stripes 5 vg/lv
2017-03-10 00:26:22 +03:00
Using default stripesize 64.00 KiB.
2017-04-11 22:17:08 +03:00
WARNING: Adding stripes to active logical volume vg/lv will \\
2017-04-11 18:55:02 +03:00
grow it from 99 to 165 extents!
2017-04-11 22:17:08 +03:00
Run "lvresize -l99 vg/lv" to shrink it or use the additional \\
2017-04-11 18:55:02 +03:00
capacity.
2017-03-30 01:44:04 +03:00
Logical volume vg/lv successfully converted.
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs vg/lv
2017-04-11 18:55:02 +03:00
LV VG Attr LSize Cpy%Sync
lv vg rwi-a-r-s- 652.00m 52.94
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
# lvs -a -o lv_name,attr,segtype,seg_pe_ranges,dataoffset vg
2017-04-11 23:23:48 +03:00
LV Attr Type PE Ranges DOff
2017-04-11 22:17:08 +03:00
lv rwi-a-r--- raid6_nr lv_rimage_0:0-33 \\
lv_rimage_1:0-33 \\
lv_rimage_2:0-33 ... \\
lv_rimage_5:0-33 \\
2017-04-11 23:23:48 +03:00
lv_rimage_6:0-33 0
[lv_rimage_0] iwi-aor--- linear /dev/sda:0-32 0
2017-03-27 17:45:48 +03:00
[lv_rimage_0] iwi-aor--- linear /dev/sda:34-34
2017-04-11 23:23:48 +03:00
[lv_rimage_1] iwi-aor--- linear /dev/sdaa:0-32 0
2017-03-27 17:45:48 +03:00
[lv_rimage_1] iwi-aor--- linear /dev/sdaa:34-34
2017-04-11 23:23:48 +03:00
[lv_rimage_2] iwi-aor--- linear /dev/sdab:0-32 0
2017-03-27 17:45:48 +03:00
[lv_rimage_2] iwi-aor--- linear /dev/sdab:34-34
2017-04-11 23:23:48 +03:00
[lv_rimage_3] iwi-aor--- linear /dev/sdac:1-34 0
[lv_rimage_4] iwi-aor--- linear /dev/sdad:1-34 0
[lv_rimage_5] iwi-aor--- linear /dev/sdae:1-34 0
[lv_rimage_6] iwi-aor--- linear /dev/sdaf:1-34 0
2017-03-27 17:45:48 +03:00
[lv_rmeta_0] ewi-aor--- linear /dev/sda:33-33
[lv_rmeta_1] ewi-aor--- linear /dev/sdaa:33-33
[lv_rmeta_2] ewi-aor--- linear /dev/sdab:33-33
[lv_rmeta_3] ewi-aor--- linear /dev/sdac:0-0
[lv_rmeta_4] ewi-aor--- linear /dev/sdad:0-0
[lv_rmeta_5] ewi-aor--- linear /dev/sdae:0-0
[lv_rmeta_6] ewi-aor--- linear /dev/sdaf:0-0
2017-03-10 00:26:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
Stripes also can be removed from raid5 and 6.
2017-03-27 17:45:48 +03:00
Convert the 5-way striped raid6_nr LV to 4-way-striped.
2017-03-10 00:26:22 +03:00
The force option needs to be used, because removing stripes
(i.e. image SubLVs) from a RaidLV will shrink its size.
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
.nf
2017-04-11 18:55:02 +03:00
# lvconvert --stripes 4 vg/lv
2017-03-10 00:26:22 +03:00
Using default stripesize 64.00 KiB.
2017-04-11 22:17:08 +03:00
WARNING: Removing stripes from active logical volume vg/lv will \\
2017-04-11 18:55:02 +03:00
shrink it from 660.00 MiB to 528.00 MiB!
2017-03-10 00:26:22 +03:00
THIS MAY DESTROY (PARTS OF) YOUR DATA!
2017-04-11 22:17:08 +03:00
If that leaves the logical volume larger than 206 extents due \\
2017-04-11 18:55:02 +03:00
to stripe rounding,
2017-03-10 00:26:22 +03:00
you may want to grow the content afterwards (filesystem etc.)
2017-04-11 22:17:08 +03:00
WARNING: to remove freed stripes after the conversion has finished,\\
2017-04-11 18:55:02 +03:00
you have to run "lvconvert --stripes 4 vg/lv"
2017-03-30 01:44:04 +03:00
Logical volume vg/lv successfully converted.
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
# lvs -a -o lv_name,attr,segtype,seg_pe_ranges,dataoffset vg
2017-04-11 23:23:48 +03:00
LV Attr Type PE Ranges DOff
2017-04-11 22:17:08 +03:00
lv rwi-a-r-s- raid6_nr lv_rimage_0:0-33 \\
lv_rimage_1:0-33 \\
lv_rimage_2:0-33 ... \\
lv_rimage_5:0-33 \\
2017-04-11 23:23:48 +03:00
lv_rimage_6:0-33 0
[lv_rimage_0] Iwi-aor--- linear /dev/sda:0-32 0
2017-03-27 17:45:48 +03:00
[lv_rimage_0] Iwi-aor--- linear /dev/sda:34-34
2017-04-11 23:23:48 +03:00
[lv_rimage_1] Iwi-aor--- linear /dev/sdaa:0-32 0
2017-03-27 17:45:48 +03:00
[lv_rimage_1] Iwi-aor--- linear /dev/sdaa:34-34
2017-04-11 23:23:48 +03:00
[lv_rimage_2] Iwi-aor--- linear /dev/sdab:0-32 0
2017-03-27 17:45:48 +03:00
[lv_rimage_2] Iwi-aor--- linear /dev/sdab:34-34
2017-04-11 23:23:48 +03:00
[lv_rimage_3] Iwi-aor--- linear /dev/sdac:1-34 0
[lv_rimage_4] Iwi-aor--- linear /dev/sdad:1-34 0
[lv_rimage_5] Iwi-aor--- linear /dev/sdae:1-34 0
[lv_rimage_6] Iwi-aor-R- linear /dev/sdaf:1-34 0
2017-03-27 17:45:48 +03:00
[lv_rmeta_0] ewi-aor--- linear /dev/sda:33-33
[lv_rmeta_1] ewi-aor--- linear /dev/sdaa:33-33
[lv_rmeta_2] ewi-aor--- linear /dev/sdab:33-33
[lv_rmeta_3] ewi-aor--- linear /dev/sdac:0-0
[lv_rmeta_4] ewi-aor--- linear /dev/sdad:0-0
[lv_rmeta_5] ewi-aor--- linear /dev/sdae:0-0
[lv_rmeta_6] ewi-aor-R- linear /dev/sdaf:0-0
2017-03-10 00:26:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
The 's' in column 9 of the attribute field shows the RaidLV is still reshaping.
The 'R' in the same column of the attribute field shows the freed image Sub LVs which will need removing once the reshaping finished.
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
.nf
2017-03-30 01:44:04 +03:00
# lvs -o lv_name,attr,segtype,seg_pe_ranges,dataoffset vg
2017-04-11 23:23:48 +03:00
LV Attr Type PE Ranges DOff
2017-04-11 22:17:08 +03:00
lv rwi-a-r-R- raid6_nr lv_rimage_0:0-33 \\
lv_rimage_1:0-33 \\
lv_rimage_2:0-33 ... \\
lv_rimage_5:0-33 \\
2017-04-11 23:23:48 +03:00
lv_rimage_6:0-33 8192
2017-03-10 00:26:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2020-10-03 14:52:37 +03:00
Now that the reshape is finished the 'R' attribute on the RaidLV shows images can be removed.
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
.nf
2017-03-30 01:44:04 +03:00
# lvs -o lv_name,attr,segtype,seg_pe_ranges,dataoffset vg
2017-04-11 23:23:48 +03:00
LV Attr Type PE Ranges DOff
lv rwi-a-r-R- raid6_nr lv_rimage_0:0-33 \\
lv_rimage_1:0-33 \\
lv_rimage_2:0-33 ... \\
lv_rimage_5:0-33 \\
lv_rimage_6:0-33 8192
2017-03-10 00:26:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
This is achieved by repeating the command ("lvconvert --stripes 4 vg/lv" would be sufficient).
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvconvert --stripes 4 vg/lv
2017-03-10 00:26:22 +03:00
Using default stripesize 64.00 KiB.
2017-03-30 01:44:04 +03:00
Logical volume vg/lv successfully converted.
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
# lvs -a -o lv_name,attr,segtype,seg_pe_ranges,dataoffset vg
2017-04-11 23:23:48 +03:00
LV Attr Type PE Ranges DOff
lv rwi-a-r--- raid6_nr lv_rimage_0:0-33 \\
lv_rimage_1:0-33 \\
lv_rimage_2:0-33 ... \\
lv_rimage_5:0-33 8192
[lv_rimage_0] iwi-aor--- linear /dev/sda:0-32 8192
2017-03-27 17:45:48 +03:00
[lv_rimage_0] iwi-aor--- linear /dev/sda:34-34
2017-04-11 23:23:48 +03:00
[lv_rimage_1] iwi-aor--- linear /dev/sdaa:0-32 8192
2017-03-27 17:45:48 +03:00
[lv_rimage_1] iwi-aor--- linear /dev/sdaa:34-34
2017-04-11 23:23:48 +03:00
[lv_rimage_2] iwi-aor--- linear /dev/sdab:0-32 8192
2017-03-27 17:45:48 +03:00
[lv_rimage_2] iwi-aor--- linear /dev/sdab:34-34
2017-04-11 23:23:48 +03:00
[lv_rimage_3] iwi-aor--- linear /dev/sdac:1-34 8192
[lv_rimage_4] iwi-aor--- linear /dev/sdad:1-34 8192
[lv_rimage_5] iwi-aor--- linear /dev/sdae:1-34 8192
2017-03-27 17:45:48 +03:00
[lv_rmeta_0] ewi-aor--- linear /dev/sda:33-33
[lv_rmeta_1] ewi-aor--- linear /dev/sdaa:33-33
[lv_rmeta_2] ewi-aor--- linear /dev/sdab:33-33
[lv_rmeta_3] ewi-aor--- linear /dev/sdac:0-0
[lv_rmeta_4] ewi-aor--- linear /dev/sdad:0-0
[lv_rmeta_5] ewi-aor--- linear /dev/sdae:0-0
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
# lvs -a -o lv_name,attr,segtype,reshapelen vg
2017-03-10 00:26:22 +03:00
LV Attr Type RSize
2017-03-27 17:45:48 +03:00
lv rwi-a-r--- raid6_nr 24.00m
[lv_rimage_0] iwi-aor--- linear 4.00m
[lv_rimage_0] iwi-aor--- linear
[lv_rimage_1] iwi-aor--- linear 4.00m
[lv_rimage_1] iwi-aor--- linear
[lv_rimage_2] iwi-aor--- linear 4.00m
[lv_rimage_2] iwi-aor--- linear
[lv_rimage_3] iwi-aor--- linear 4.00m
[lv_rimage_4] iwi-aor--- linear 4.00m
[lv_rimage_5] iwi-aor--- linear 4.00m
[lv_rmeta_0] ewi-aor--- linear
[lv_rmeta_1] ewi-aor--- linear
[lv_rmeta_2] ewi-aor--- linear
[lv_rmeta_3] ewi-aor--- linear
[lv_rmeta_4] ewi-aor--- linear
[lv_rmeta_5] ewi-aor--- linear
2017-03-10 00:26:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
Future developments might include automatic removal of the freed images.
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
If the reshape space shall be removed any lvconvert command not changing the layout can be used:
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
.nf
2017-03-30 01:44:04 +03:00
# lvconvert --stripes 4 vg/lv
2017-03-10 00:26:22 +03:00
Using default stripesize 64.00 KiB.
2017-03-30 01:44:04 +03:00
No change in RAID LV vg/lv layout, freeing reshape space.
Logical volume vg/lv successfully converted.
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
# lvs -a -o lv_name,attr,segtype,reshapelen vg
2017-03-10 00:26:22 +03:00
LV Attr Type RSize
2017-03-27 17:45:48 +03:00
lv rwi-a-r--- raid6_nr 0
[lv_rimage_0] iwi-aor--- linear 0
[lv_rimage_0] iwi-aor--- linear
[lv_rimage_1] iwi-aor--- linear 0
[lv_rimage_1] iwi-aor--- linear
[lv_rimage_2] iwi-aor--- linear 0
[lv_rimage_2] iwi-aor--- linear
[lv_rimage_3] iwi-aor--- linear 0
[lv_rimage_4] iwi-aor--- linear 0
[lv_rimage_5] iwi-aor--- linear 0
[lv_rmeta_0] ewi-aor--- linear
[lv_rmeta_1] ewi-aor--- linear
[lv_rmeta_2] ewi-aor--- linear
[lv_rmeta_3] ewi-aor--- linear
[lv_rmeta_4] ewi-aor--- linear
[lv_rmeta_5] ewi-aor--- linear
2017-03-10 00:26:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
In case the RaidLV should be converted to striped:
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
.nf
2017-03-30 01:44:04 +03:00
# lvconvert --type striped vg/lv
Unable to convert LV vg/lv from raid6_nr to striped.
2017-05-22 22:28:04 +03:00
Converting vg/lv from raid6_nr is directly possible to the \\
2017-05-19 00:47:37 +03:00
following layouts:
2017-03-10 00:26:22 +03:00
raid6_nc
raid6_zr
raid6_la_6
raid6_ls_6
raid6_ra_6
raid6_rs_6
raid6_n_6
2017-04-11 23:23:48 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
A direct conversion isn't possible thus the command informed about the possible ones.
raid6_n_6 is suitable to convert to striped so convert to it first (this is a reshape
changing the raid6 layout from raid6_nr to raid6_n_6).
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
.nf
2017-03-27 17:45:48 +03:00
# lvconvert --type raid6_n_6
2017-03-10 00:26:22 +03:00
Using default stripesize 64.00 KiB.
2017-03-30 01:44:04 +03:00
Converting raid6_nr LV vg/lv to raid6_n_6.
Are you sure you want to convert raid6_nr LV vg/lv? [y/n]: y
Logical volume vg/lv successfully converted.
2017-04-11 23:23:48 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
Wait for the reshape to finish.
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
.nf
# lvconvert --type striped vg/lv
2017-03-30 01:44:04 +03:00
Logical volume vg/lv successfully converted.
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -o lv_name,attr,segtype,seg_pe_ranges,dataoffset vg
LV Attr Type PE Ranges DOff
lv -wi-a----- striped /dev/sda:2-32 \\
/dev/sdaa:2-32 \\
/dev/sdab:2-32 \\
/dev/sdac:3-33
lv -wi-a----- striped /dev/sda:34-35 \\
/dev/sdaa:34-35 \\
/dev/sdab:34-35 \\
/dev/sdac:34-35
2017-03-10 00:26:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
From striped we can convert to raid10
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvconvert --type raid10 vg/lv
2017-03-10 00:26:22 +03:00
Using default stripesize 64.00 KiB.
2017-03-30 01:44:04 +03:00
Logical volume vg/lv successfully converted.
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
# lvs -o lv_name,attr,segtype,seg_pe_ranges,dataoffset vg
2017-04-11 23:23:48 +03:00
LV Attr Type PE Ranges DOff
lv rwi-a-r--- raid10 lv_rimage_0:0-32 \\
lv_rimage_4:0-32 \\
lv_rimage_1:0-32 ... \\
lv_rimage_3:0-32 \\
lv_rimage_7:0-32 0
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
# lvs -a -o lv_name,attr,segtype,seg_pe_ranges,dataoffset vg
WARNING: Cannot find matching striped segment for vg/lv_rimage_3.
2017-04-11 23:23:48 +03:00
LV Attr Type PE Ranges DOff
lv rwi-a-r--- raid10 lv_rimage_0:0-32 \\
lv_rimage_4:0-32 \\
lv_rimage_1:0-32 ... \\
lv_rimage_3:0-32 \\
lv_rimage_7:0-32 0
[lv_rimage_0] iwi-aor--- linear /dev/sda:2-32 0
2017-03-27 17:45:48 +03:00
[lv_rimage_0] iwi-aor--- linear /dev/sda:34-35
2017-04-11 23:23:48 +03:00
[lv_rimage_1] iwi-aor--- linear /dev/sdaa:2-32 0
2017-03-27 17:45:48 +03:00
[lv_rimage_1] iwi-aor--- linear /dev/sdaa:34-35
2017-04-11 23:23:48 +03:00
[lv_rimage_2] iwi-aor--- linear /dev/sdab:2-32 0
2017-03-27 17:45:48 +03:00
[lv_rimage_2] iwi-aor--- linear /dev/sdab:34-35
2017-04-11 23:23:48 +03:00
[lv_rimage_3] iwi-XXr--- linear /dev/sdac:3-35 0
[lv_rimage_4] iwi-aor--- linear /dev/sdad:1-33 0
[lv_rimage_5] iwi-aor--- linear /dev/sdae:1-33 0
[lv_rimage_6] iwi-aor--- linear /dev/sdaf:1-33 0
[lv_rimage_7] iwi-aor--- linear /dev/sdag:1-33 0
2017-03-27 17:45:48 +03:00
[lv_rmeta_0] ewi-aor--- linear /dev/sda:0-0
[lv_rmeta_1] ewi-aor--- linear /dev/sdaa:0-0
[lv_rmeta_2] ewi-aor--- linear /dev/sdab:0-0
[lv_rmeta_3] ewi-aor--- linear /dev/sdac:0-0
[lv_rmeta_4] ewi-aor--- linear /dev/sdad:0-0
[lv_rmeta_5] ewi-aor--- linear /dev/sdae:0-0
[lv_rmeta_6] ewi-aor--- linear /dev/sdaf:0-0
[lv_rmeta_7] ewi-aor--- linear /dev/sdag:0-0
2017-03-10 00:26:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-10 00:26:22 +03:00
raid10 allows to add stripes but can't remove them.
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:48:16 +03:00
A more elaborate example to convert from linear to striped
2017-03-11 00:40:22 +03:00
with interim conversions to raid1 then raid5 followed
by restripe (4 steps).
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
We start with the linear LV.
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvs -a -o name,size,segtype,syncpercent,datastripes,\\
stripesize,reshapelenle,devices vg
LV LSize Type Cpy%Sync #DStr Stripe RSize Devices
lv 128.00m linear 1 0 /dev/sda(0)
2017-03-11 00:40:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
Then convert it to a 2-way raid1.
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvconvert --mirrors 1 vg/lv
2017-03-11 00:40:22 +03:00
Logical volume vg/lv successfully converted.
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -a -o name,size,segtype,datastripes,\\
stripesize,reshapelenle,devices vg
LV LSize Type #DStr Stripe RSize Devices
lv 128.00m raid1 2 0 lv_rimage_0(0),\\
lv_rimage_1(0)
[lv_rimage_0] 128.00m linear 1 0 /dev/sda(0)
[lv_rimage_1] 128.00m linear 1 0 /dev/sdhx(1)
[lv_rmeta_0] 4.00m linear 1 0 /dev/sda(32)
[lv_rmeta_1] 4.00m linear 1 0 /dev/sdhx(0)
2017-03-11 00:40:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
Once the raid1 LV is fully synchronized we convert it to raid5_n (only 2-way raid1
LVs can be converted to raid5). We select raid5_n here because it has dedicated parity
SubLVs at the end and can be converted to striped directly without any additional
conversion.
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvconvert --type raid5_n vg/lv
2017-03-11 00:40:22 +03:00
Using default stripesize 64.00 KiB.
Logical volume vg/lv successfully converted.
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -a -o name,size,segtype,syncpercent,datastripes,\\
stripesize,reshapelenle,devices vg
LV LSize Type #DStr Stripe RSize Devices
lv 128.00m raid5_n 1 64.00k 0 lv_rimage_0(0),\\
lv_rimage_1(0)
[lv_rimage_0] 128.00m linear 1 0 0 /dev/sda(0)
[lv_rimage_1] 128.00m linear 1 0 0 /dev/sdhx(1)
[lv_rmeta_0] 4.00m linear 1 0 /dev/sda(32)
[lv_rmeta_1] 4.00m linear 1 0 /dev/sdhx(0)
2017-03-11 00:40:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
Now we'll change the number of data stripes from 1 to 5 and request 128K stripe size
in one command. This will grow the size of the LV by a factor of 5 (we add 4 data stripes
2020-10-03 14:52:37 +03:00
to the one given). That additional space can be used by e.g. growing any contained filesystem
2017-03-11 00:40:22 +03:00
or the LV can be reduced in size after the reshaping conversion has finished.
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvconvert --stripesize 128k --stripes 5 vg/lv
2017-03-11 00:40:22 +03:00
Converting stripesize 64.00 KiB of raid5_n LV vg/lv to 128.00 KiB.
2017-04-11 23:23:48 +03:00
WARNING: Adding stripes to active logical volume vg/lv will grow \\
it from 32 to 160 extents!
2017-03-11 00:40:22 +03:00
Run "lvresize -l32 vg/lv" to shrink it or use the additional capacity.
Logical volume vg/lv successfully converted.
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -a -o name,size,segtype,datastripes,\\
stripesize,reshapelenle,devices
LV LSize Type #DStr Stripe RSize Devices
lv 640.00m raid5_n 5 128.00k 6 lv_rimage_0(0),\\
lv_rimage_1(0),\\
lv_rimage_2(0),\\
lv_rimage_3(0),\\
lv_rimage_4(0),\\
lv_rimage_5(0)
[lv_rimage_0] 132.00m linear 1 0 1 /dev/sda(33)
[lv_rimage_0] 132.00m linear 1 0 /dev/sda(0)
[lv_rimage_1] 132.00m linear 1 0 1 /dev/sdhx(33)
[lv_rimage_1] 132.00m linear 1 0 /dev/sdhx(1)
[lv_rimage_2] 132.00m linear 1 0 1 /dev/sdhw(33)
[lv_rimage_2] 132.00m linear 1 0 /dev/sdhw(1)
[lv_rimage_3] 132.00m linear 1 0 1 /dev/sdhv(33)
[lv_rimage_3] 132.00m linear 1 0 /dev/sdhv(1)
[lv_rimage_4] 132.00m linear 1 0 1 /dev/sdhu(33)
[lv_rimage_4] 132.00m linear 1 0 /dev/sdhu(1)
[lv_rimage_5] 132.00m linear 1 0 1 /dev/sdht(33)
[lv_rimage_5] 132.00m linear 1 0 /dev/sdht(1)
[lv_rmeta_0] 4.00m linear 1 0 /dev/sda(32)
[lv_rmeta_1] 4.00m linear 1 0 /dev/sdhx(0)
[lv_rmeta_2] 4.00m linear 1 0 /dev/sdhw(0)
[lv_rmeta_3] 4.00m linear 1 0 /dev/sdhv(0)
[lv_rmeta_4] 4.00m linear 1 0 /dev/sdhu(0)
[lv_rmeta_5] 4.00m linear 1 0 /dev/sdht(0)
2017-03-11 00:40:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
Once the conversion has finished we can can convert to striped.
2021-04-15 23:18:05 +03:00
.P
2017-03-11 00:40:22 +03:00
.nf
2017-04-11 23:23:48 +03:00
# lvconvert --type striped vg/lv
2017-03-11 00:40:22 +03:00
Logical volume vg/lv successfully converted.
2021-04-15 23:18:05 +03:00
.P
2017-04-11 23:23:48 +03:00
# lvs -a -o name,size,segtype,datastripes,\\
stripesize,reshapelenle,devices vg
LV LSize Type #DStr Stripe RSize Devices
lv 640.00m striped 5 128.00k /dev/sda(33),\\
/dev/sdhx(33),\\
/dev/sdhw(33),\\
/dev/sdhv(33),\\
/dev/sdhu(33)
lv 640.00m striped 5 128.00k /dev/sda(0),\\
/dev/sdhx(1),\\
/dev/sdhw(1),\\
/dev/sdhv(1),\\
/dev/sdhu(1)
2017-03-11 00:40:22 +03:00
.fi
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
Reversing these steps will convert a given striped LV to linear.
2021-04-15 23:18:05 +03:00
.P
2017-03-30 01:44:04 +03:00
Mind the facts that stripes are removed thus the capacity of the RaidLV will shrink
and that changing the RaidLV layout will influence its performance.
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
"lvconvert --stripes 1 vg/lv" for converting to 1 stripe will inform upfront about
2017-03-11 00:40:22 +03:00
the reduced size to allow for resizing the content or growing the RaidLV before
2017-03-27 17:45:48 +03:00
actually converting to 1 stripe. The \fB--force\fP option is needed to
2017-03-11 00:40:22 +03:00
allow stripe removing conversions to prevent data loss.
2021-04-15 23:18:05 +03:00
.P
Of course any interim step can be the intended last one (e.g. striped \[->] raid1).
.
.SH RAID5 VARIANTS
.
.TP
2016-09-06 22:50:08 +03:00
raid5_ls
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
RAID5 left symmetric
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
Rotating parity N with data restart
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid5_la
2021-04-15 23:18:05 +03:00
.ipbu
RAID5 left asymmetric
.ipbu
2016-09-06 22:50:08 +03:00
Rotating parity N with data continuation
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid5_rs
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
RAID5 right symmetric
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
Rotating parity 0 with data restart
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid5_ra
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
RAID5 right asymmetric
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
Rotating parity 0 with data continuation
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid5_n
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-03 00:24:19 +03:00
RAID5 parity n
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-03 00:24:19 +03:00
Dedicated parity device n used for striped/raid0 conversions
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-03 00:24:19 +03:00
Used for RAID Takeover
2021-04-15 23:18:05 +03:00
.
.SH RAID6 VARIANTS
.
.TP
.RB raid6\ \ " "
.ipbu
2016-09-06 22:50:08 +03:00
RAID6 zero restart (aka left symmetric)
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
Rotating parity 0 with data restart
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
Same as raid6_zr
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid6_zr
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
RAID6 zero restart (aka left symmetric)
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
Rotating parity 0 with data restart
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid6_nr
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
RAID6 N restart (aka right symmetric)
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
Rotating parity N with data restart
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid6_nc
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
RAID6 N continue
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
Rotating parity N with data continuation
2021-04-15 23:18:05 +03:00
.
.TP
2017-03-03 00:24:19 +03:00
raid6_n_6
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-03 00:24:19 +03:00
RAID6 last parity devices
2021-04-15 23:18:05 +03:00
.ipbu
2017-04-06 01:35:12 +03:00
Fixed dedicated last devices (P-Syndrome N-1 and Q-Syndrome N)
with striped data used for striped/raid0 conversions
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-03 00:24:19 +03:00
Used for RAID Takeover
2021-04-15 23:18:05 +03:00
.
.TP
2017-03-03 00:24:19 +03:00
raid6_{ls,rs,la,ra}_6
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-03 00:24:19 +03:00
RAID6 last parity device
2021-04-15 23:18:05 +03:00
.ipbu
2017-05-22 22:28:04 +03:00
Dedicated last parity device used for conversions from/to
raid5_{ls,rs,la,ra}
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid6_ls_6
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
RAID6 N continue
2021-04-15 23:18:05 +03:00
.ipbu
2019-11-07 19:45:37 +03:00
Same as raid5_ls for N-1 devices with fixed Q-Syndrome N
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-03 00:24:19 +03:00
Used for RAID Takeover
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid6_la_6
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
RAID6 N continue
2021-04-15 23:18:05 +03:00
.ipbu
2019-11-07 19:45:37 +03:00
Same as raid5_la for N-1 devices with fixed Q-Syndrome N
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-03 00:24:19 +03:00
Used forRAID Takeover
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid6_rs_6
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
RAID6 N continue
2021-04-15 23:18:05 +03:00
.ipbu
2019-11-07 19:45:37 +03:00
Same as raid5_rs for N-1 devices with fixed Q-Syndrome N
2021-04-15 23:18:05 +03:00
.ipbu
2017-03-03 00:24:19 +03:00
Used for RAID Takeover
2021-04-15 23:18:05 +03:00
.
.TP
2016-09-06 22:50:08 +03:00
raid6_ra_6
2021-04-15 23:18:05 +03:00
.ipbu
2016-09-06 22:50:08 +03:00
RAID6 N continue
2021-04-15 23:18:05 +03:00
.ipbu
Same as raid5_ra for N-1 devices with fixed Q-Syndrome N
.ipbu
2017-03-03 00:24:19 +03:00
Used for RAID Takeover
2021-04-15 23:18:05 +03:00
.
.
2016-09-06 23:13:59 +03:00
.ig
2021-04-15 23:18:05 +03:00
.
.SH RAID DUPLICATION
.
2017-03-27 17:45:48 +03:00
RAID LV conversion (takeover or reshaping) can be done out-of-place by
2016-09-06 22:50:08 +03:00
copying the LV data onto new devices while changing the RAID properties.
Copying avoids modifying the original LV but requires additional devices.
Once the LV data has been copied/converted onto the new devices, there are
multiple options:
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
1. The RAID LV can be switched over to run from just the new devices, and
the original copy of the data removed. The converted LV then has the new
RAID properties, and exists on new devices. The old devices holding the
original data can be removed or reused.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
2. The new copy of the data can be dropped, leaving the original RAID LV
unchanged and using its original devices.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
3. The new copy of the data can be separated and used as a new independent
LV, leaving the original RAID LV unchanged on its original devices.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The command to start duplication is:
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvconvert --type
2016-09-06 22:50:08 +03:00
.I RaidLevel
2017-03-27 17:45:48 +03:00
[\fB--stripes\fP \fINumber\fP \fB--stripesize\fP \fISize\fP]
2016-09-06 22:50:08 +03:00
.RS
2017-03-27 17:45:48 +03:00
.B --duplicate
2017-04-11 21:13:49 +03:00
.I LV
2016-09-06 22:50:08 +03:00
[\fIPVs\fP]
.RE
2021-04-15 23:18:05 +03:00
.P
.TP
2017-03-27 17:45:48 +03:00
.B --duplicate
2016-09-06 22:50:08 +03:00
.br
2017-03-27 17:45:48 +03:00
Specifies that the LV conversion should be done out-of-place, copying
2017-03-10 00:26:22 +03:00
LV data to new devices while converting.
2021-04-15 23:18:05 +03:00
.P
.TP
2017-03-27 17:45:48 +03:00
.BR --type , --stripes , --stripesize
2016-09-06 22:50:08 +03:00
.br
Specifies the RAID properties to use when creating the copy.
.P
\fIPVs\fP specifies the new devices to use.
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
The steps in the duplication process:
2021-04-15 23:18:05 +03:00
.P
.ipbu
2016-09-06 22:50:08 +03:00
LVM creates a new LV on new devices using the specified RAID properties
(type, stripes, etc) and optionally specified devices.
2021-04-15 23:18:05 +03:00
.P
.ipbu
2016-09-06 22:50:08 +03:00
LVM changes the visible RAID LV to type raid1, making the original LV the
first raid1 image (SubLV 0), and the new LV the second raid1 image
(SubLV 1).
2021-04-15 23:18:05 +03:00
.P
.ipbu
2016-09-06 22:50:08 +03:00
The RAID1 synchronization process copies data from the original LV
image (SubLV 0) to the new LV image (SubLV 1).
2021-04-15 23:18:05 +03:00
.P
.ipbu
2016-09-06 22:50:08 +03:00
When synchronization is complete, the original and new LVs are
mirror images of each other and can be separated.
.P
The duplication process retains both the original and new LVs (both
SubLVs) until an explicit unduplicate command is run to separate them. The
unduplicate command specifies if the original LV should use the old
devices (SubLV 0) or the new devices (SubLV 1).
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
To make the RAID LV use the data on the old devices, and drop the copy on
the new devices, specify the name of SubLV 0 (suffix _dup_0):
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvconvert --unduplicate
.BI --name
2016-09-06 22:50:08 +03:00
.IB LV _dup_0
2017-04-11 21:13:49 +03:00
.I LV
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
To make the RAID LV use the data copy on the new devices, and drop the old
devices, specify the name of SubLV 1 (suffix _dup_1):
2021-04-15 23:18:05 +03:00
.P
2017-03-27 17:45:48 +03:00
.B lvconvert --unduplicate
.BI --name
2016-09-06 22:50:08 +03:00
.IB LV _dup_1
2017-04-11 21:13:49 +03:00
.I LV
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
FIXME: To make the LV use the data on the original devices, but keep the
data copy as a new LV, ...
2021-04-15 23:18:05 +03:00
.P
2016-09-06 22:50:08 +03:00
FIXME: include how splitmirrors can be used.
2021-04-15 23:18:05 +03:00
.
.SS RAID1E
.
2016-09-06 22:50:08 +03:00
TODO
2016-09-06 23:13:59 +03:00
..
2021-04-15 23:18:05 +03:00
.
.SH HISTORY
.
2017-03-27 17:45:48 +03:00
The 2.6.38-rc1 version of the Linux kernel introduced a device-mapper
2016-09-06 22:50:08 +03:00
target to interface with the software RAID (MD) personalities. This
2017-03-27 17:45:48 +03:00
provided device-mapper with RAID 4/5/6 capabilities and a larger
2016-09-06 22:50:08 +03:00
development community. Later, support for RAID1, RAID10, and RAID1E (RAID
10 variants) were added. Support for these new kernel RAID targets was
added to LVM version 2.02.87. The capabilities of the LVM \fBraid1\fP
type have surpassed the old \fBmirror\fP type. raid1 is now recommended
instead of mirror. raid1 became the default for mirroring in LVM version
2.02.100.
2021-04-15 23:18:05 +03:00
.
.SH SEE ALSO
.
.nh
.ad l
.BR lvm (8),
.BR lvm.conf (5),
.BR lvcreate (8),
.BR lvconvert (8),
.BR lvchange (8),
.BR lvextend (8),
.BR dmeventd (8)