]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - cddl/contrib/opensolaris/cmd/zpool/zpool-features.7
MFC r264835: MFV r264829:
[FreeBSD/stable/9.git] / cddl / contrib / opensolaris / cmd / zpool / zpool-features.7
1 '\" te
2 .\" Copyright (c) 2012, Martin Matuska <mm@FreeBSD.org>.
3 .\" All Rights Reserved.
4 .\"
5 .\" The contents of this file are subject to the terms of the
6 .\" Common Development and Distribution License (the "License").
7 .\" You may not use this file except in compliance with the License.
8 .\"
9 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 .\" or http://www.opensolaris.org/os/licensing.
11 .\" See the License for the specific language governing permissions
12 .\" and limitations under the License.
13 .\"
14 .\" When distributing Covered Code, include this CDDL HEADER in each
15 .\" file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 .\" If applicable, add the following below this CDDL HEADER, with the
17 .\" fields enclosed by brackets "[]" replaced with your own identifying
18 .\" information: Portions Copyright [yyyy] [name of copyright owner]
19 .\"
20 .\" Copyright (c) 2012 by Delphix. All rights reserved.
21 .\" Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
22 .\" Copyright (c) 2013, Joyent, Inc. All rights reserved.
23 .\"
24 .\" $FreeBSD$
25 .\"
26 .Dd April 23, 2014
27 .Dt ZPOOL-FEATURES 7
28 .Os
29 .Sh NAME
30 .Nm zpool-features
31 .Nd ZFS pool feature descriptions
32 .Sh DESCRIPTION
33 ZFS pool on\-disk format versions are specified via "features" which replace
34 the old on\-disk format numbers (the last supported on\-disk format number is
35 28).
36 To enable a feature on a pool use the
37 .Cm upgrade
38 subcommand of the
39 .Xr zpool 8
40 command, or set the
41 .Sy feature@feature_name
42 property to
43 .Ar enabled .
44 .Pp
45 The pool format does not affect file system version compatibility or the ability
46 to send file systems between pools.
47 .Pp
48 Since most features can be enabled independently of each other the on\-disk
49 format of the pool is specified by the set of all features marked as
50 .Sy active
51 on the pool. If the pool was created by another software version this set may
52 include unsupported features.
53 .Ss Identifying features
54 Every feature has a guid of the form
55 .Sy com.example:feature_name .
56 The reverse DNS name ensures that the feature's guid is unique across all ZFS
57 implementations. When unsupported features are encountered on a pool they will
58 be identified by their guids.
59 Refer to the documentation for the ZFS implementation that created the pool
60 for information about those features.
61 .Pp
62 Each supported feature also has a short name.
63 By convention a feature's short name is the portion of its guid which follows
64 the ':' (e.g.
65 .Sy com.example:feature_name
66 would have the short name
67 .Sy feature_name ),
68 however a feature's short name may differ across ZFS implementations if
69 following the convention would result in name conflicts.
70 .Ss Feature states
71 Features can be in one of three states:
72 .Bl -tag -width "XXXXXXXX"
73 .It Sy active
74 This feature's on\-disk format changes are in effect on the pool.
75 Support for this feature is required to import the pool in read\-write mode.
76 If this feature is not read-only compatible, support is also required to
77 import the pool in read\-only mode (see "Read\-only compatibility").
78 .It Sy enabled
79 An administrator has marked this feature as enabled on the pool, but the
80 feature's on\-disk format changes have not been made yet.
81 The pool can still be imported by software that does not support this feature,
82 but changes may be made to the on\-disk format at any time which will move
83 the feature to the
84 .Sy active
85 state.
86 Some features may support returning to the
87 .Sy enabled
88 state after becoming
89 .Sy active .
90 See feature\-specific documentation for details.
91 .It Sy disabled
92 This feature's on\-disk format changes have not been made and will not be made
93 unless an administrator moves the feature to the
94 .Sy enabled
95 state.
96 Features cannot be disabled once they have been enabled.
97 .El
98 .Pp
99 The state of supported features is exposed through pool properties of the form
100 .Sy feature@short_name .
101 .Ss Read\-only compatibility
102 Some features may make on\-disk format changes that do not interfere with other
103 software's ability to read from the pool.
104 These features are referred to as "read\-only compatible".
105 If all unsupported features on a pool are read\-only compatible, the pool can
106 be imported in read\-only mode by setting the
107 .Sy readonly
108 property during import (see
109 .Xr zpool 8
110 for details on importing pools).
111 .Ss Unsupported features
112 For each unsupported feature enabled on an imported pool a pool property
113 named
114 .Sy unsupported@feature_guid
115 will indicate why the import was allowed despite the unsupported feature.
116 Possible values for this property are:
117 .Bl -tag -width "XXXXXXXX"
118 .It Sy inactive
119 The feature is in the
120 .Sy enabled
121 state and therefore the pool's on\-disk format is still compatible with
122 software that does not support this feature.
123 .It Sy readonly
124 The feature is read\-only compatible and the pool has been imported in
125 read\-only mode.
126 .El
127 .Ss Feature dependencies
128 Some features depend on other features being enabled in order to function
129 properly.
130 Enabling a feature will automatically enable any features it depends on.
131 .Sh FEATURES
132 The following features are supported on this system:
133 .Bl -tag -width "XXXXXXXX"
134 .It Sy async_destroy
135 .Bl -column "READ\-ONLY COMPATIBLE" "com.delphix:async_destroy"
136 .It GUID Ta com.delphix:async_destroy
137 .It READ\-ONLY COMPATIBLE Ta yes
138 .It DEPENDENCIES Ta none
139 .El
140 .Pp
141 Destroying a file system requires traversing all of its data in order to
142 return its used space to the pool.
143 Without
144 .Sy async_destroy
145 the file system is not fully removed until all space has been reclaimed.
146 If the destroy operation is interrupted by a reboot or power outage the next
147 attempt to open the pool will need to complete the destroy operation
148 synchronously.
149 .Pp
150 When
151 .Sy async_destroy
152 is enabled the file system's data will be reclaimed by a background process,
153 allowing the destroy operation to complete without traversing the entire file
154 system.
155 The background process is able to resume interrupted destroys after the pool
156 has been opened, eliminating the need to finish interrupted destroys as part
157 of the open operation.
158 The amount of space remaining to be reclaimed by the background process is
159 available through the
160 .Sy freeing
161 property.
162 .Pp
163 This feature is only
164 .Sy active
165 while
166 .Sy freeing
167 is non\-zero.
168 .It Sy empty_bpobj
169 .Bl -column "READ\-ONLY COMPATIBLE" "com.delphix:empty_bpobj"
170 .It GUID Ta com.delphix:empty_bpobj
171 .It READ\-ONLY COMPATIBLE Ta yes
172 .It DEPENDENCIES Ta none
173 .El
174 .Pp
175 This feature increases the performance of creating and using a large number
176 of snapshots of a single filesystem or volume, and also reduces the disk
177 space required.
178 .Pp
179 When there are many snapshots, each snapshot uses many Block Pointer Objects
180 .Pq bpobj's
181 to track blocks associated with that snapshot.
182 However, in common use cases, most of these bpobj's are empty.
183 This feature allows us to create each bpobj on-demand, thus eliminating the
184 empty bpobjs.
185 .Pp
186 This feature is
187 .Sy active
188 while there are any filesystems, volumes, or snapshots which were created
189 after enabling this feature.
190 .It Sy filesystem_limits
191 .Bl -column "READ\-ONLY COMPATIBLE" "com.joyent:filesystem_limits"
192 .It GUID Ta com.joyent:filesystem_limits
193 .It READ\-ONLY COMPATIBLE Ta yes
194 .It DEPENDENCIES Ta extensible_dataset
195 .El
196 .Pp
197 This feature enables filesystem and snapshot limits.
198 These limits can be used
199 to control how many filesystems and/or snapshots can be created at the point in
200 the tree on which the limits are set.
201 .Pp
202 This feature is
203 .Sy active
204 once either of the limit properties has been
205 set on a dataset.
206 Once activated the feature is never deactivated.
207 .It Sy lz4_compress
208 .Bl -column "READ\-ONLY COMPATIBLE" "org.illumos:lz4_compress"
209 .It GUID Ta org.illumos:lz4_compress
210 .It READ\-ONLY COMPATIBLE Ta no
211 .It DEPENDENCIES Ta none
212 .El
213 .Pp
214 .Sy lz4
215 is a high-performance real-time compression algorithm that
216 features significantly faster compression and decompression as well as a
217 higher compression ratio than the older
218 .Sy lzjb
219 compression.
220 Typically,
221 .Sy lz4
222 compression is approximately 50% faster on
223 compressible data and 200% faster on incompressible data than
224 .Sy lzjb .
225 It is also approximately 80% faster on decompression, while
226 giving approximately 10% better compression ratio.
227 .Pp
228 When the
229 .Sy lz4_compress
230 feature is set to
231 .Sy enabled ,
232 the
233 administrator can turn on
234 .Sy lz4
235 compression on any dataset on the
236 pool using the
237 .Xr zfs 8
238 command. Please note that doing so will
239 immediately activate the
240 .Sy lz4_compress
241 feature on the underlying
242 pool
243 .Pq even before any data is written ,
244 and the feature will not be
245 deactivated.
246 Since this feature is not read-only compatible, this
247 operation will render the pool unimportable on systems without support
248 for the
249 .Sy lz4_compress
250 feature.
251 Booting off of
252 .Sy lz4
253 -compressed root pools is supported.
254 .It Sy multi_vdev_crash_dump
255 .Bl -column "READ\-ONLY COMPATIBLE" "com.joyent:multi_vdev_crash_dump"
256 .It GUID Ta com.joyent:multi_vdev_crash_dump
257 .It READ\-ONLY COMPATIBLE Ta no
258 .It DEPENDENCIES Ta none
259 .El
260 .Pp
261 This feature allows a dump device to be configured with a pool comprised
262 of multiple vdevs.
263 Those vdevs may be arranged in any mirrored or raidz
264 configuration.
265 .\" TODO: this is not yet supported on FreeBSD.
266 .\" .Pp
267 .\" When the
268 .\" .Sy multi_vdev_crash_dump
269 .\" feature is set to
270 .\" .Sy enabled ,
271 .\" the administrator can use the
272 .\" .Xr dumpon 8
273 .\" command to configure a
274 .\" dump device on a pool comprised of multiple vdevs.
275 .It Sy spacemap_histogram
276 .Bl -column "READ\-ONLY COMPATIBLE" "com.delphix:spacemap_histogram"
277 .It GUID Ta com.delphix:spacemap_histogram
278 .It READ\-ONLY COMPATIBLE Ta yes
279 .It DEPENDENCIES Ta none
280 .El
281 .Pp
282 This features allows ZFS to maintain more information about how free space
283 is organized within the pool. If this feature is 
284 .Sy enabled ,
285 ZFS will
286 set this feature to
287 .Sy active
288 when a new space map object is created or
289 an existing space map is upgraded to the new format.
290 Once the feature is
291 .Sy active ,
292 it will remain in that state until the pool is destroyed.
293 .It Sy extensible_dataset
294 .Bl -column "READ\-ONLY COMPATIBLE" "com.delphix:extensible_dataset"
295 .It GUID Ta com.delphix:extensible_dataset
296 .It READ\-ONLY COMPATIBLE Ta no
297 .It DEPENDENCIES Ta none
298 .El
299 .Pp
300 This feature allows more flexible use of internal ZFS data structures,
301 and exists for other features to depend on.
302 .Pp
303 This feature will be
304 .Sy active
305 when the first dependent feature uses it,
306 and will be returned to the
307 .Sy enabled
308 state when all datasets that use
309 this feature are destroyed.
310 .It Sy bookmarks
311 .Bl -column "READ\-ONLY COMPATIBLE" "com.delphix:bookmarks"
312 .It GUID Ta com.delphix:bookmarks
313 .It READ\-ONLY COMPATIBLE Ta yes
314 .It DEPENDENCIES Ta extensible_dataset
315 .El
316 .Pp
317 This feature enables use of the
318 .Nm zfs
319 .Cm bookmark
320 subcommand.
321 .Pp
322 This feature is
323 .Sy active
324 while any bookmarks exist in the pool.
325 All bookmarks in the pool can be listed by running
326 .Nm zfs
327 .Cm list
328 .Fl t No bookmark Fl r Ar poolname .
329 .It Sy enabled_txg
330 .Bl -column "READ\-ONLY COMPATIBLE" "com.delphix:enabled_txg"
331 .It GUID Ta com.delphix:enabled_txg
332 .It READ\-ONLY COMPATIBLE Ta yes
333 .It DEPENDENCIES Ta none
334 .El
335 .Pp
336 Once this feature is enabled ZFS records the transaction group number
337 in which new features are enabled. This has no user-visible impact,
338 but other features may depend on this feature.
339 .Pp
340 This feature becomes
341 .Sy active
342 as soon as it is enabled and will
343 never return to being
344 .Sy enabled .
345 .It Sy hole_birth
346 .Bl -column "READ\-ONLY COMPATIBLE" "com.delphix:hole_birth"
347 .It GUID Ta com.delphix:hole_birth
348 .It READ\-ONLY COMPATIBLE Ta no
349 .It DEPENDENCIES Ta enabled_txg
350 .El
351 .Pp
352 This feature improves performance of incremental sends
353 .Pq Dq zfs send -i
354 and receives for objects with many holes.
355 The most common case of
356 hole-filled objects is zvols.
357 .Pp
358 An incremental send stream from snapshot
359 .Sy A
360 to snapshot
361 .Sy B
362 contains information about every block that changed between
363 .Sy A
364 and
365 .Sy B .
366 Blocks which did not change between those snapshots can be
367 identified and omitted from the stream using a piece of metadata called
368 the 'block birth time', but birth times are not recorded for holes
369 .Pq blocks filled only with zeroes .
370 Since holes created after
371 .Sy A
372 cannot be
373 distinguished from holes created before
374 .Sy A ,
375 information about every
376 hole in the entire filesystem or zvol is included in the send stream.
377 .Pp
378 For workloads where holes are rare this is not a problem.
379 However, when
380 incrementally replicating filesystems or zvols with many holes
381 .Pq for example a zvol formatted with another filesystem
382 a lot of time will
383 be spent sending and receiving unnecessary information about holes that
384 already exist on the receiving side.
385 .Pp
386 Once the
387 .Sy hole_birth
388 feature has been enabled the block birth times
389 of all new holes will be recorded.
390 Incremental sends between snapshots
391 created after this feature is enabled will use this new metadata to avoid
392 sending information about holes that already exist on the receiving side.
393 .Pp
394 This feature becomes
395 .Sy active
396 as soon as it is enabled and will
397 never return to being
398 .Sy enabled .
399 .El
400 .Sh SEE ALSO
401 .Xr zpool 8
402 .Sh AUTHORS
403 This manual page is a
404 .Xr mdoc 7
405 reimplementation of the
406 .Tn illumos
407 manual page
408 .Em zpool-features(5) ,
409 modified and customized for
410 .Fx
411 and licensed under the Common Development and Distribution License
412 .Pq Tn CDDL .
413 .Pp
414 The
415 .Xr mdoc 7
416 implementation of this manual page was initially written by
417 .An Martin Matuska Aq mm@FreeBSD.org .