btrfs-progs: extend balance args to take min/max usage filter
[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 The argument may be a single value or a range. The single value *N* means *at
111 most N percent used*, equivalent to *..N* range syntax. Kernels prior to 4.4
112 accept only the single value format.
113 +
114 The minimum boundary is inclusive, maximum is exclusive.
115
116 *devid=<id>*::
117 Balances only block groups which have at least one chunk on the given
118 device. To list devices with ids use 'btrfs fi show'.
119
120 *drange=<range>*::
121 Balances only block groups which overlap with the given byte range on any
122 device.(Use in conjunction with 'devid' to filter on a specific device. The
123 parameter is a range specified as 'start..end'.
124
125 *vrange=<range>*::
126 Balances only block groups which overlap with the given byte range in the
127 filesystem's internal virtual address space. This is the address space that
128 most reports from btrfs in the kernel log use. The parameter is a range
129 specified as 'start..end'.
130
131 *convert=<profile>*::
132 Convert each selected block group to the given profile name identified by
133 parameters.
134
135 *limit=<number>*::
136 Process only given number of chunks, after all filters are applied. This can be
137 used to specifically target a chunk in connection with other filters (drange,
138 vrange) or just simply limit the amount of work done by a single balance run.
139 +
140 The argument may be a single value or a range. The single value *N* means *at
141 most N chunks*, equivalent to *..N* range syntax. Kernels prior to 4.4 accept
142 only the single value format.
143 +
144 The range minimum and maximum are inclusive.
145
146 *stripes*::
147 Balances only block groups which have the given number of stripes. The
148 parameter is a range specified as <start..end>.
149 +
150 The range minimum and maximum are inclusive.
151
152 *soft*::
153 Takes no parameters. Only has meaning when converting between profiles.
154 When doing convert from one profile to another and soft mode is on,
155 chunks that already have the target profile are left untouched
156  This is useful if e.g. half of the filesystem was converted earlier.
157 +
158 The soft mode switch is (like every other filter) per-type.
159 For example, this means that we can convert metadata chunks the "hard" way
160 while converting data chunks selectively with soft switch.
161
162 Profile names, used in profiles and convert are one of: 'raid0', 'raid1',
163 'raid10', 'raid5', 'raid6', 'dup', 'single'. The mixed data/metadata profiles
164 can be converted in the same bay, but it's conversion between mixed and non-mixed
165 is not implemented.
166
167 ENOSPC
168 ------
169
170 The way balance operates, it usually needs to temporarily create a new block
171 group and move the old data there. For that it needs work space, otherwise
172 it fails for ENOSPC reasons.
173 This is not the same ENOSPC as if the free space is exhausted. This refers to
174 the space on the level of block groups.
175
176 The free work space can be calculated from the output of the 'btrfs filesystem show'
177 command:
178
179    Label: 'BTRFS'  uuid: 8a9d72cd-ead3-469d-b371-9c7203276265
180            Total devices 2 FS bytes used 77.03GiB
181            devid    1 size 53.90GiB used 51.90GiB path /dev/sdc2
182            devid    2 size 53.90GiB used 51.90GiB path /dev/sde1
183
184 'size' - 'used' = 'free work space' +
185 '53.90GiB' - '51.90GiB' = '2.00GiB'
186
187 An example of a filter that does not require workspace is 'usage=0'. This will
188 scan through all unused block groups of a given type and will reclaim the
189 space. Ater that it might be possible to run other filters.
190
191 **CONVERSIONS ON MULTIPLE DEVICES**
192
193 Conversion to profiles based on striping (RAID0, RAID5/6) require the work
194 space on each device. An interrupted balance may leave partially filled block
195 groups that might consume the work space.
196
197 EXIT STATUS
198 -----------
199 *btrfs balance* returns a zero exit status if it succeeds. Non zero is
200 returned in case of failure.
201
202 AVAILABILITY
203 ------------
204 *btrfs* is part of btrfs-progs.
205 Please refer to the btrfs wiki http://btrfs.wiki.kernel.org for
206 further details.
207
208 SEE ALSO
209 --------
210 `mkfs.btrfs`(8),
211 `btrfs-device`(8)