btrfs-progs: docs: mkfs, implications of DUP on devices
[platform/upstream/btrfs-progs.git] / Documentation / btrfs-balance.asciidoc
1 btrfs-balance(8)
2 ================
3
4 NAME
5 ----
6 btrfs-balance - balance block groups on a btrfs filesystem
7
8 SYNOPSIS
9 --------
10 *btrfs balance* <subcommand> <args>
11
12 DESCRIPTION
13 -----------
14 The primary purpose of the balance feature is to spread block groups accross
15 all devices so they match constraints defined by the respective profiles. See
16 `mkfs.btrfs`(8) section 'PROFILES' for more details.
17 The scope of the balancing process can be further tuned by use of filters that
18 can select the block groups to process. Balance works only on a mounted
19 filesystem.
20
21 The balance operation is cancellable by the user. The on-disk state of the
22 filesystem is always consistent so an unexpected interruption (eg. system crash,
23 reboot) does not corrupt the filesystem. The progress of the balance operation
24 is temporarily stored and will be resumed upon mount, unless the mount option
25 'skip_balance' is specified.
26
27 WARNING: running balance without filters will take a lot of time as it basically
28 rewrites the entire filesystem and needs to update all block pointers.
29
30 The filters can be used to perform following actions:
31
32 - convert block group profiles (filter 'convert')
33 - make block group usage more compact  (filter 'usage')
34 - perform actions only on a given device (filters 'devid', 'drange')
35
36 The filters can be applied to a combination of block group types (data,
37 metadata, system). Note that changing 'system' needs the force option.
38
39 NOTE: the balance operation needs enough work space, ie. space that is
40 completely unused in the filesystem, otherwise this may lead to ENOSPC reports.
41 See the section 'ENOSPC' for more details.
42
43 COMPATIBILITY
44 -------------
45
46 NOTE: The balance subcommand also exists under the *filesystem* namespace. This
47 still works for backward compatibility but is deprecated and should not be
48 used anymore.
49
50 NOTE: A short syntax *btrfs balance <path>* works due to backward compatibility
51 but is deprecated and should not be used anymore. Use *btrfs balance start*
52 command instead.
53
54 SUBCOMMAND
55 ----------
56 *cancel* <path>::
57 cancel running or paused balance
58
59 *pause* <path>::
60 pause running balance operation, this will store the state of the balance
61 progress and used filters to the filesystem
62
63 *resume* <path>::
64 resume interrupted balance
65
66 *start* [options] <path>::
67 start the balance operation according to the specified filters, no filters
68 will rewrite the entire filesystem. The process runs in the foreground.
69 +
70 `Options`
71 +
72 -d[<filters>]::::
73 act on data block groups, see `FILTERS` section for details about 'filters'
74 -m[<filters>]::::
75 act on metadata chunks, see `FILTERS` section for details about 'filters'
76 -s[<filters>]::::
77 act on system chunks (requires '-f'), see `FILTERS` section for details about 'filters'.
78 -v::::
79 be verbose and print balance filter arguments
80 -f::::
81 force reducing of metadata integrity, eg. when going from 'raid1' to 'single'
82
83 *status* [-v] <path>::
84 Show status of running or paused balance.
85 +
86 If '-v' option is given, output will be verbose.
87
88 FILTERS
89 -------
90 From kernel 3.3 onwards, btrfs balance can limit its action to a subset of the
91 full filesystem, and can be used to change the replication configuration (e.g.
92 moving data from single to RAID1). This functionality is accessed through the
93 '-d', '-m' or '-s' options to btrfs balance start, which filter on data,
94 metadata and system blocks respectively.
95
96 A filter has the following stucture: 'type'[='params'][,'type'=...]
97
98 The available types are:
99
100 *profiles=<profiles>*::
101 Balances only block groups with the given profiles. Parameters
102 are a list of profile names separated by "'|'" (pipe).
103
104 *usage=<percent>*::
105 Balances only block groups with usage under the given percentage. The
106 value of 0 is allowed and will clean up completely unused block groups, this
107 should not require any new space allocated. You may want to use 'usage=0' in
108 case balance is returnin ENOSPC and your filesystem is not too full.
109
110 *devid=<id>*::
111 Balances only block groups which have at least one chunk on the given
112 device. To list devices with ids use 'btrfs fi show'.
113
114 *drange=<range>*::
115 Balances only block groups which overlap with the given byte range on any
116 device.(Use in conjunction with 'devid' to filter on a specific device. The
117 parameter is a range specified as 'start..end'.
118
119 *vrange=<range>*::
120 Balances only block groups which overlap with the given byte range in the
121 filesystem's internal virtual address space. This is the address space that
122 most reports from btrfs in the kernel log use. The parameter is a range
123 specified as 'start..end'.
124
125 *convert=<profile>*::
126 Convert each selected block group to the given profile name identified by
127 parameters.
128
129 *limit=<number>*::
130 Process only given number of chunks, after all filters are applied. This can be
131 used to specifically target a chunk in connection with other filters (drange,
132 vrange) or just simply limit the amount of work done by a single balance run.
133
134 *soft*::
135 Takes no parameters. Only has meaning when converting between profiles.
136 When doing convert from one profile to another and soft mode is on,
137 chunks that already have the target profile are left untouched
138  This is useful if e.g. half of the filesystem was converted earlier.
139 +
140 The soft mode switch is (like every other filter) per-type.
141 For example, this means that we can convert metadata chunks the "hard" way
142 while converting data chunks selectively with soft switch.
143
144 Profile names, used in profiles and convert are one of: 'raid0', 'raid1',
145 'raid10', 'raid5', 'raid6', 'dup', 'single'. The mixed data/metadata profiles
146 can be converted in the same bay, but it's conversion between mixed and non-mixed
147 is not implemented.
148
149 ENOSPC
150 ------
151
152 The way balance operates, it usually needs to temporarily create a new block
153 group and move the old data there. For that it needs work space, otherwise
154 it fails for ENOSPC reasons.
155 This is not the same ENOSPC as if the free space is exhausted. This refers to
156 the space on the level of block groups.
157
158 The free work space can be calculated from the output of the 'btrfs filesystem show'
159 command:
160
161    Label: 'BTRFS'  uuid: 8a9d72cd-ead3-469d-b371-9c7203276265
162            Total devices 2 FS bytes used 77.03GiB
163            devid    1 size 53.90GiB used 51.90GiB path /dev/sdc2
164            devid    2 size 53.90GiB used 51.90GiB path /dev/sde1
165
166 'size' - 'used' = 'free work space' +
167 '53.90GiB' - '51.90GiB' = '2.00GiB'
168
169 An example of a filter that does not require workspace is 'usage=0'. This will
170 scan through all unused block groups of a given type and will reclaim the
171 space. Ater that it might be possible to run other filters.
172
173 **CONVERSIONS ON MULTIPLE DEVICES**
174
175 Conversion to profiles based on striping (RAID0, RAID5/6) require the work
176 space on each device. An interrupted balance may leave partially filled block
177 groups that might consume the work space.
178
179 EXIT STATUS
180 -----------
181 *btrfs balance* returns a zero exit status if it succeeds. Non zero is
182 returned in case of failure.
183
184 AVAILABILITY
185 ------------
186 *btrfs* is part of btrfs-progs.
187 Please refer to the btrfs wiki http://btrfs.wiki.kernel.org for
188 further details.
189
190 SEE ALSO
191 --------
192 `mkfs.btrfs`(8),
193 `btrfs-device`(8)