]> git.proxmox.com Git - pve-docs.git/blame_incremental - local-zfs.adoc
network: override device names: suggest running update-initramfs
[pve-docs.git] / local-zfs.adoc
... / ...
CommitLineData
1[[chapter_zfs]]
2ZFS on Linux
3------------
4ifdef::wiki[]
5:pve-toplevel:
6endif::wiki[]
7
8ZFS is a combined file system and logical volume manager designed by
9Sun Microsystems. Starting with {pve} 3.4, the native Linux
10kernel port of the ZFS file system is introduced as optional
11file system and also as an additional selection for the root
12file system. There is no need for manually compile ZFS modules - all
13packages are included.
14
15By using ZFS, its possible to achieve maximum enterprise features with
16low budget hardware, but also high performance systems by leveraging
17SSD caching or even SSD only setups. ZFS can replace cost intense
18hardware raid cards by moderate CPU and memory load combined with easy
19management.
20
21.General ZFS advantages
22
23* Easy configuration and management with {pve} GUI and CLI.
24
25* Reliable
26
27* Protection against data corruption
28
29* Data compression on file system level
30
31* Snapshots
32
33* Copy-on-write clone
34
35* Various raid levels: RAID0, RAID1, RAID10, RAIDZ-1, RAIDZ-2, RAIDZ-3,
36dRAID, dRAID2, dRAID3
37
38* Can use SSD for cache
39
40* Self healing
41
42* Continuous integrity checking
43
44* Designed for high storage capacities
45
46* Asynchronous replication over network
47
48* Open Source
49
50* Encryption
51
52* ...
53
54
55Hardware
56~~~~~~~~
57
58ZFS depends heavily on memory, so you need at least 8GB to start. In
59practice, use as much as you can get for your hardware/budget. To prevent
60data corruption, we recommend the use of high quality ECC RAM.
61
62If you use a dedicated cache and/or log disk, you should use an
63enterprise class SSD. This can
64increase the overall performance significantly.
65
66IMPORTANT: Do not use ZFS on top of a hardware RAID controller which has its
67own cache management. ZFS needs to communicate directly with the disks. An
68HBA adapter or something like an LSI controller flashed in ``IT'' mode is more
69appropriate.
70
71If you are experimenting with an installation of {pve} inside a VM
72(Nested Virtualization), don't use `virtio` for disks of that VM,
73as they are not supported by ZFS. Use IDE or SCSI instead (also works
74with the `virtio` SCSI controller type).
75
76
77Installation as Root File System
78~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
79
80When you install using the {pve} installer, you can choose ZFS for the
81root file system. You need to select the RAID type at installation
82time:
83
84[horizontal]
85RAID0:: Also called ``striping''. The capacity of such volume is the sum
86of the capacities of all disks. But RAID0 does not add any redundancy,
87so the failure of a single drive makes the volume unusable.
88
89RAID1:: Also called ``mirroring''. Data is written identically to all
90disks. This mode requires at least 2 disks with the same size. The
91resulting capacity is that of a single disk.
92
93RAID10:: A combination of RAID0 and RAID1. Requires at least 4 disks.
94
95RAIDZ-1:: A variation on RAID-5, single parity. Requires at least 3 disks.
96
97RAIDZ-2:: A variation on RAID-5, double parity. Requires at least 4 disks.
98
99RAIDZ-3:: A variation on RAID-5, triple parity. Requires at least 5 disks.
100
101The installer automatically partitions the disks, creates a ZFS pool
102called `rpool`, and installs the root file system on the ZFS subvolume
103`rpool/ROOT/pve-1`.
104
105Another subvolume called `rpool/data` is created to store VM
106images. In order to use that with the {pve} tools, the installer
107creates the following configuration entry in `/etc/pve/storage.cfg`:
108
109----
110zfspool: local-zfs
111 pool rpool/data
112 sparse
113 content images,rootdir
114----
115
116After installation, you can view your ZFS pool status using the
117`zpool` command:
118
119----
120# zpool status
121 pool: rpool
122 state: ONLINE
123 scan: none requested
124config:
125
126 NAME STATE READ WRITE CKSUM
127 rpool ONLINE 0 0 0
128 mirror-0 ONLINE 0 0 0
129 sda2 ONLINE 0 0 0
130 sdb2 ONLINE 0 0 0
131 mirror-1 ONLINE 0 0 0
132 sdc ONLINE 0 0 0
133 sdd ONLINE 0 0 0
134
135errors: No known data errors
136----
137
138The `zfs` command is used to configure and manage your ZFS file systems. The
139following command lists all file systems after installation:
140
141----
142# zfs list
143NAME USED AVAIL REFER MOUNTPOINT
144rpool 4.94G 7.68T 96K /rpool
145rpool/ROOT 702M 7.68T 96K /rpool/ROOT
146rpool/ROOT/pve-1 702M 7.68T 702M /
147rpool/data 96K 7.68T 96K /rpool/data
148rpool/swap 4.25G 7.69T 64K -
149----
150
151
152[[sysadmin_zfs_raid_considerations]]
153ZFS RAID Level Considerations
154~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
155
156There are a few factors to take into consideration when choosing the layout of
157a ZFS pool. The basic building block of a ZFS pool is the virtual device, or
158`vdev`. All vdevs in a pool are used equally and the data is striped among them
159(RAID0). Check the `zpoolconcepts(7)` manpage for more details on vdevs.
160
161[[sysadmin_zfs_raid_performance]]
162Performance
163^^^^^^^^^^^
164
165Each `vdev` type has different performance behaviors. The two
166parameters of interest are the IOPS (Input/Output Operations per Second) and
167the bandwidth with which data can be written or read.
168
169A 'mirror' vdev (RAID1) will approximately behave like a single disk in regard
170to both parameters when writing data. When reading data the performance will
171scale linearly with the number of disks in the mirror.
172
173A common situation is to have 4 disks. When setting it up as 2 mirror vdevs
174(RAID10) the pool will have the write characteristics as two single disks in
175regard to IOPS and bandwidth. For read operations it will resemble 4 single
176disks.
177
178A 'RAIDZ' of any redundancy level will approximately behave like a single disk
179in regard to IOPS with a lot of bandwidth. How much bandwidth depends on the
180size of the RAIDZ vdev and the redundancy level.
181
182A 'dRAID' pool should match the performance of an equivalent 'RAIDZ' pool.
183
184For running VMs, IOPS is the more important metric in most situations.
185
186
187[[sysadmin_zfs_raid_size_space_usage_redundancy]]
188Size, Space usage and Redundancy
189^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
190
191While a pool made of 'mirror' vdevs will have the best performance
192characteristics, the usable space will be 50% of the disks available. Less if a
193mirror vdev consists of more than 2 disks, for example in a 3-way mirror. At
194least one healthy disk per mirror is needed for the pool to stay functional.
195
196The usable space of a 'RAIDZ' type vdev of N disks is roughly N-P, with P being
197the RAIDZ-level. The RAIDZ-level indicates how many arbitrary disks can fail
198without losing data. A special case is a 4 disk pool with RAIDZ2. In this
199situation it is usually better to use 2 mirror vdevs for the better performance
200as the usable space will be the same.
201
202Another important factor when using any RAIDZ level is how ZVOL datasets, which
203are used for VM disks, behave. For each data block the pool needs parity data
204which is at least the size of the minimum block size defined by the `ashift`
205value of the pool. With an ashift of 12 the block size of the pool is 4k. The
206default block size for a ZVOL is 8k. Therefore, in a RAIDZ2 each 8k block
207written will cause two additional 4k parity blocks to be written,
2088k + 4k + 4k = 16k. This is of course a simplified approach and the real
209situation will be slightly different with metadata, compression and such not
210being accounted for in this example.
211
212This behavior can be observed when checking the following properties of the
213ZVOL:
214
215 * `volsize`
216 * `refreservation` (if the pool is not thin provisioned)
217 * `used` (if the pool is thin provisioned and without snapshots present)
218
219----
220# zfs get volsize,refreservation,used <pool>/vm-<vmid>-disk-X
221----
222
223`volsize` is the size of the disk as it is presented to the VM, while
224`refreservation` shows the reserved space on the pool which includes the
225expected space needed for the parity data. If the pool is thin provisioned, the
226`refreservation` will be set to 0. Another way to observe the behavior is to
227compare the used disk space within the VM and the `used` property. Be aware
228that snapshots will skew the value.
229
230There are a few options to counter the increased use of space:
231
232* Increase the `volblocksize` to improve the data to parity ratio
233* Use 'mirror' vdevs instead of 'RAIDZ'
234* Use `ashift=9` (block size of 512 bytes)
235
236The `volblocksize` property can only be set when creating a ZVOL. The default
237value can be changed in the storage configuration. When doing this, the guest
238needs to be tuned accordingly and depending on the use case, the problem of
239write amplification is just moved from the ZFS layer up to the guest.
240
241Using `ashift=9` when creating the pool can lead to bad
242performance, depending on the disks underneath, and cannot be changed later on.
243
244Mirror vdevs (RAID1, RAID10) have favorable behavior for VM workloads. Use
245them, unless your environment has specific needs and characteristics where
246RAIDZ performance characteristics are acceptable.
247
248
249ZFS dRAID
250~~~~~~~~~
251
252In a ZFS dRAID (declustered RAID) the hot spare drive(s) participate in the RAID.
253Their spare capacity is reserved and used for rebuilding when one drive fails.
254This provides, depending on the configuration, faster rebuilding compared to a
255RAIDZ in case of drive failure. More information can be found in the official
256OpenZFS documentation. footnote:[OpenZFS dRAID
257https://openzfs.github.io/openzfs-docs/Basic%20Concepts/dRAID%20Howto.html]
258
259NOTE: dRAID is intended for more than 10-15 disks in a dRAID. A RAIDZ
260setup should be better for a lower amount of disks in most use cases.
261
262NOTE: The GUI requires one more disk than the minimum (i.e. dRAID1 needs 3). It
263expects that a spare disk is added as well.
264
265 * `dRAID1` or `dRAID`: requires at least 2 disks, one can fail before data is
266lost
267 * `dRAID2`: requires at least 3 disks, two can fail before data is lost
268 * `dRAID3`: requires at least 4 disks, three can fail before data is lost
269
270
271Additional information can be found on the manual page:
272
273----
274# man zpoolconcepts
275----
276
277Spares and Data
278^^^^^^^^^^^^^^^
279The number of `spares` tells the system how many disks it should keep ready in
280case of a disk failure. The default value is 0 `spares`. Without spares,
281rebuilding won't get any speed benefits.
282
283`data` defines the number of devices in a redundancy group. The default value is
2848. Except when `disks - parity - spares` equal something less than 8, the lower
285number is used. In general, a smaller number of `data` devices leads to higher
286IOPS, better compression ratios and faster resilvering, but defining fewer data
287devices reduces the available storage capacity of the pool.
288
289
290Bootloader
291~~~~~~~~~~
292
293{pve} uses xref:sysboot_proxmox_boot_tool[`proxmox-boot-tool`] to manage the
294bootloader configuration.
295See the chapter on xref:sysboot[{pve} host bootloaders] for details.
296
297
298ZFS Administration
299~~~~~~~~~~~~~~~~~~
300
301This section gives you some usage examples for common tasks. ZFS
302itself is really powerful and provides many options. The main commands
303to manage ZFS are `zfs` and `zpool`. Both commands come with great
304manual pages, which can be read with:
305
306----
307# man zpool
308# man zfs
309-----
310
311[[sysadmin_zfs_create_new_zpool]]
312Create a new zpool
313^^^^^^^^^^^^^^^^^^
314
315To create a new pool, at least one disk is needed. The `ashift` should have the
316same sector-size (2 power of `ashift`) or larger as the underlying disk.
317
318----
319# zpool create -f -o ashift=12 <pool> <device>
320----
321
322[TIP]
323====
324Pool names must adhere to the following rules:
325
326* begin with a letter (a-z or A-Z)
327* contain only alphanumeric, `-`, `_`, `.`, `:` or ` ` (space) characters
328* must *not begin* with one of `mirror`, `raidz`, `draid` or `spare`
329* must not be `log`
330====
331
332To activate compression (see section <<zfs_compression,Compression in ZFS>>):
333
334----
335# zfs set compression=lz4 <pool>
336----
337
338[[sysadmin_zfs_create_new_zpool_raid0]]
339Create a new pool with RAID-0
340^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
341
342Minimum 1 disk
343
344----
345# zpool create -f -o ashift=12 <pool> <device1> <device2>
346----
347
348[[sysadmin_zfs_create_new_zpool_raid1]]
349Create a new pool with RAID-1
350^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
351
352Minimum 2 disks
353
354----
355# zpool create -f -o ashift=12 <pool> mirror <device1> <device2>
356----
357
358[[sysadmin_zfs_create_new_zpool_raid10]]
359Create a new pool with RAID-10
360^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
361
362Minimum 4 disks
363
364----
365# zpool create -f -o ashift=12 <pool> mirror <device1> <device2> mirror <device3> <device4>
366----
367
368[[sysadmin_zfs_create_new_zpool_raidz1]]
369Create a new pool with RAIDZ-1
370^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
371
372Minimum 3 disks
373
374----
375# zpool create -f -o ashift=12 <pool> raidz1 <device1> <device2> <device3>
376----
377
378Create a new pool with RAIDZ-2
379^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
380
381Minimum 4 disks
382
383----
384# zpool create -f -o ashift=12 <pool> raidz2 <device1> <device2> <device3> <device4>
385----
386
387Please read the section for
388xref:sysadmin_zfs_raid_considerations[ZFS RAID Level Considerations]
389to get a rough estimate on how IOPS and bandwidth expectations before setting up
390a pool, especially when wanting to use a RAID-Z mode.
391
392[[sysadmin_zfs_create_new_zpool_with_cache]]
393Create a new pool with cache (L2ARC)
394^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
395
396It is possible to use a dedicated device, or partition, as second-level cache to
397increase the performance. Such a cache device will especially help with
398random-read workloads of data that is mostly static. As it acts as additional
399caching layer between the actual storage, and the in-memory ARC, it can also
400help if the ARC must be reduced due to memory constraints.
401
402.Create ZFS pool with a on-disk cache
403----
404# zpool create -f -o ashift=12 <pool> <device> cache <cache-device>
405----
406
407Here only a single `<device>` and a single `<cache-device>` was used, but it is
408possible to use more devices, like it's shown in
409xref:sysadmin_zfs_create_new_zpool_raid0[Create a new pool with RAID].
410
411Note that for cache devices no mirror or raid modi exist, they are all simply
412accumulated.
413
414If any cache device produces errors on read, ZFS will transparently divert that
415request to the underlying storage layer.
416
417
418[[sysadmin_zfs_create_new_zpool_with_log]]
419Create a new pool with log (ZIL)
420^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
421
422It is possible to use a dedicated drive, or partition, for the ZFS Intent Log
423(ZIL), it is mainly used to provide safe synchronous transactions, so often in
424performance critical paths like databases, or other programs that issue `fsync`
425operations more frequently.
426
427The pool is used as default ZIL location, diverting the ZIL IO load to a
428separate device can, help to reduce transaction latencies while relieving the
429main pool at the same time, increasing overall performance.
430
431For disks to be used as log devices, directly or through a partition, it's
432recommend to:
433
434- use fast SSDs with power-loss protection, as those have much smaller commit
435 latencies.
436
437- Use at least a few GB for the partition (or whole device), but using more than
438 half of your installed memory won't provide you with any real advantage.
439
440.Create ZFS pool with separate log device
441----
442# zpool create -f -o ashift=12 <pool> <device> log <log-device>
443----
444
445In above example a single `<device>` and a single `<log-device>` is used, but you
446can also combine this with other RAID variants, as described in the
447xref:sysadmin_zfs_create_new_zpool_raid0[Create a new pool with RAID] section.
448
449You can also mirror the log device to multiple devices, this is mainly useful to
450ensure that performance doesn't immediately degrades if a single log device
451fails.
452
453If all log devices fail the ZFS main pool itself will be used again, until the
454log device(s) get replaced.
455
456[[sysadmin_zfs_add_cache_and_log_dev]]
457Add cache and log to an existing pool
458^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
459
460If you have a pool without cache and log you can still add both, or just one of
461them, at any time.
462
463For example, let's assume you got a good enterprise SSD with power-loss
464protection that you want to use for improving the overall performance of your
465pool.
466
467As the maximum size of a log device should be about half the size of the
468installed physical memory, it means that the ZIL will mostly likely only take up
469a relatively small part of the SSD, the remaining space can be used as cache.
470
471First you have to create two GPT partitions on the SSD with `parted` or `gdisk`.
472
473Then you're ready to add them to an pool:
474
475.Add both, a separate log device and a second-level cache, to an existing pool
476----
477# zpool add -f <pool> log <device-part1> cache <device-part2>
478----
479
480Just replay `<pool>`, `<device-part1>` and `<device-part2>` with the pool name
481and the two `/dev/disk/by-id/` paths to the partitions.
482
483You can also add ZIL and cache separately.
484
485.Add a log device to an existing ZFS pool
486----
487# zpool add <pool> log <log-device>
488----
489
490
491[[sysadmin_zfs_change_failed_dev]]
492Changing a failed device
493^^^^^^^^^^^^^^^^^^^^^^^^
494
495----
496# zpool replace -f <pool> <old-device> <new-device>
497----
498
499.Changing a failed bootable device
500
501Depending on how {pve} was installed it is either using `systemd-boot` or GRUB
502through `proxmox-boot-tool` footnote:[Systems installed with {pve} 6.4 or later,
503EFI systems installed with {pve} 5.4 or later] or plain GRUB as bootloader (see
504xref:sysboot[Host Bootloader]). You can check by running:
505
506----
507# proxmox-boot-tool status
508----
509
510The first steps of copying the partition table, reissuing GUIDs and replacing
511the ZFS partition are the same. To make the system bootable from the new disk,
512different steps are needed which depend on the bootloader in use.
513
514----
515# sgdisk <healthy bootable device> -R <new device>
516# sgdisk -G <new device>
517# zpool replace -f <pool> <old zfs partition> <new zfs partition>
518----
519
520NOTE: Use the `zpool status -v` command to monitor how far the resilvering
521process of the new disk has progressed.
522
523.With `proxmox-boot-tool`:
524
525----
526# proxmox-boot-tool format <new disk's ESP>
527# proxmox-boot-tool init <new disk's ESP> [grub]
528----
529
530NOTE: `ESP` stands for EFI System Partition, which is setup as partition #2 on
531bootable disks setup by the {pve} installer since version 5.4. For details, see
532xref:sysboot_proxmox_boot_setup[Setting up a new partition for use as synced ESP].
533
534NOTE: Make sure to pass 'grub' as mode to `proxmox-boot-tool init` if
535`proxmox-boot-tool status` indicates your current disks are using GRUB,
536especially if Secure Boot is enabled!
537
538.With plain GRUB:
539
540----
541# grub-install <new disk>
542----
543NOTE: Plain GRUB is only used on systems installed with {pve} 6.3 or earlier,
544which have not been manually migrated to using `proxmox-boot-tool` yet.
545
546
547Configure E-Mail Notification
548~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
549
550ZFS comes with an event daemon `ZED`, which monitors events generated by the ZFS
551kernel module. The daemon can also send emails on ZFS events like pool errors.
552Newer ZFS packages ship the daemon in a separate `zfs-zed` package, which should
553already be installed by default in {pve}.
554
555You can configure the daemon via the file `/etc/zfs/zed.d/zed.rc` with your
556favorite editor. The required setting for email notification is
557`ZED_EMAIL_ADDR`, which is set to `root` by default.
558
559--------
560ZED_EMAIL_ADDR="root"
561--------
562
563Please note {pve} forwards mails to `root` to the email address
564configured for the root user.
565
566
567[[sysadmin_zfs_limit_memory_usage]]
568Limit ZFS Memory Usage
569~~~~~~~~~~~~~~~~~~~~~~
570
571ZFS uses '50 %' of the host memory for the **A**daptive **R**eplacement
572**C**ache (ARC) by default. For new installations starting with {pve} 8.1, the
573ARC usage limit will be set to '10 %' of the installed physical memory, clamped
574to a maximum of +16 GiB+. This value is written to `/etc/modprobe.d/zfs.conf`.
575
576Allocating enough memory for the ARC is crucial for IO performance, so reduce it
577with caution. As a general rule of thumb, allocate at least +2 GiB Base + 1
578GiB/TiB-Storage+. For example, if you have a pool with +8 TiB+ of available
579storage space then you should use +10 GiB+ of memory for the ARC.
580
581ZFS also enforces a minimum value of +64 MiB+.
582
583You can change the ARC usage limit for the current boot (a reboot resets this
584change again) by writing to the +zfs_arc_max+ module parameter directly:
585
586----
587 echo "$[10 * 1024*1024*1024]" >/sys/module/zfs/parameters/zfs_arc_max
588----
589
590To *permanently change* the ARC limits, add (or change if already present) the
591following line to `/etc/modprobe.d/zfs.conf`:
592
593--------
594options zfs zfs_arc_max=8589934592
595--------
596
597This example setting limits the usage to 8 GiB ('8 * 2^30^').
598
599IMPORTANT: In case your desired +zfs_arc_max+ value is lower than or equal to
600+zfs_arc_min+ (which defaults to 1/32 of the system memory), +zfs_arc_max+ will
601be ignored unless you also set +zfs_arc_min+ to at most +zfs_arc_max - 1+.
602
603----
604echo "$[8 * 1024*1024*1024 - 1]" >/sys/module/zfs/parameters/zfs_arc_min
605echo "$[8 * 1024*1024*1024]" >/sys/module/zfs/parameters/zfs_arc_max
606----
607
608This example setting (temporarily) limits the usage to 8 GiB ('8 * 2^30^') on
609systems with more than 256 GiB of total memory, where simply setting
610+zfs_arc_max+ alone would not work.
611
612[IMPORTANT]
613====
614If your root file system is ZFS, you must update your initramfs every
615time this value changes:
616
617----
618# update-initramfs -u -k all
619----
620
621You *must reboot* to activate these changes.
622====
623
624
625[[zfs_swap]]
626SWAP on ZFS
627~~~~~~~~~~~
628
629Swap-space created on a zvol may generate some troubles, like blocking the
630server or generating a high IO load, often seen when starting a Backup
631to an external Storage.
632
633We strongly recommend to use enough memory, so that you normally do not
634run into low memory situations. Should you need or want to add swap, it is
635preferred to create a partition on a physical disk and use it as a swap device.
636You can leave some space free for this purpose in the advanced options of the
637installer. Additionally, you can lower the
638``swappiness'' value. A good value for servers is 10:
639
640----
641# sysctl -w vm.swappiness=10
642----
643
644To make the swappiness persistent, open `/etc/sysctl.conf` with
645an editor of your choice and add the following line:
646
647--------
648vm.swappiness = 10
649--------
650
651.Linux kernel `swappiness` parameter values
652[width="100%",cols="<m,2d",options="header"]
653|===========================================================
654| Value | Strategy
655| vm.swappiness = 0 | The kernel will swap only to avoid
656an 'out of memory' condition
657| vm.swappiness = 1 | Minimum amount of swapping without
658disabling it entirely.
659| vm.swappiness = 10 | This value is sometimes recommended to
660improve performance when sufficient memory exists in a system.
661| vm.swappiness = 60 | The default value.
662| vm.swappiness = 100 | The kernel will swap aggressively.
663|===========================================================
664
665[[zfs_encryption]]
666Encrypted ZFS Datasets
667~~~~~~~~~~~~~~~~~~~~~~
668
669WARNING: Native ZFS encryption in {pve} is experimental. Known limitations and
670issues include Replication with encrypted datasets
671footnote:[https://bugzilla.proxmox.com/show_bug.cgi?id=2350],
672as well as checksum errors when using Snapshots or ZVOLs.
673footnote:[https://github.com/openzfs/zfs/issues/11688]
674
675ZFS on Linux version 0.8.0 introduced support for native encryption of
676datasets. After an upgrade from previous ZFS on Linux versions, the encryption
677feature can be enabled per pool:
678
679----
680# zpool get feature@encryption tank
681NAME PROPERTY VALUE SOURCE
682tank feature@encryption disabled local
683
684# zpool set feature@encryption=enabled
685
686# zpool get feature@encryption tank
687NAME PROPERTY VALUE SOURCE
688tank feature@encryption enabled local
689----
690
691WARNING: There is currently no support for booting from pools with encrypted
692datasets using GRUB, and only limited support for automatically unlocking
693encrypted datasets on boot. Older versions of ZFS without encryption support
694will not be able to decrypt stored data.
695
696NOTE: It is recommended to either unlock storage datasets manually after
697booting, or to write a custom unit to pass the key material needed for
698unlocking on boot to `zfs load-key`.
699
700WARNING: Establish and test a backup procedure before enabling encryption of
701production data. If the associated key material/passphrase/keyfile has been
702lost, accessing the encrypted data is no longer possible.
703
704Encryption needs to be setup when creating datasets/zvols, and is inherited by
705default to child datasets. For example, to create an encrypted dataset
706`tank/encrypted_data` and configure it as storage in {pve}, run the following
707commands:
708
709----
710# zfs create -o encryption=on -o keyformat=passphrase tank/encrypted_data
711Enter passphrase:
712Re-enter passphrase:
713
714# pvesm add zfspool encrypted_zfs -pool tank/encrypted_data
715----
716
717All guest volumes/disks create on this storage will be encrypted with the
718shared key material of the parent dataset.
719
720To actually use the storage, the associated key material needs to be loaded
721and the dataset needs to be mounted. This can be done in one step with:
722
723----
724# zfs mount -l tank/encrypted_data
725Enter passphrase for 'tank/encrypted_data':
726----
727
728It is also possible to use a (random) keyfile instead of prompting for a
729passphrase by setting the `keylocation` and `keyformat` properties, either at
730creation time or with `zfs change-key` on existing datasets:
731
732----
733# dd if=/dev/urandom of=/path/to/keyfile bs=32 count=1
734
735# zfs change-key -o keyformat=raw -o keylocation=file:///path/to/keyfile tank/encrypted_data
736----
737
738WARNING: When using a keyfile, special care needs to be taken to secure the
739keyfile against unauthorized access or accidental loss. Without the keyfile, it
740is not possible to access the plaintext data!
741
742A guest volume created underneath an encrypted dataset will have its
743`encryptionroot` property set accordingly. The key material only needs to be
744loaded once per encryptionroot to be available to all encrypted datasets
745underneath it.
746
747See the `encryptionroot`, `encryption`, `keylocation`, `keyformat` and
748`keystatus` properties, the `zfs load-key`, `zfs unload-key` and `zfs
749change-key` commands and the `Encryption` section from `man zfs` for more
750details and advanced usage.
751
752
753[[zfs_compression]]
754Compression in ZFS
755~~~~~~~~~~~~~~~~~~
756
757When compression is enabled on a dataset, ZFS tries to compress all *new*
758blocks before writing them and decompresses them on reading. Already
759existing data will not be compressed retroactively.
760
761You can enable compression with:
762
763----
764# zfs set compression=<algorithm> <dataset>
765----
766
767We recommend using the `lz4` algorithm, because it adds very little CPU
768overhead. Other algorithms like `lzjb` and `gzip-N`, where `N` is an
769integer from `1` (fastest) to `9` (best compression ratio), are also
770available. Depending on the algorithm and how compressible the data is,
771having compression enabled can even increase I/O performance.
772
773You can disable compression at any time with:
774
775----
776# zfs set compression=off <dataset>
777----
778
779Again, only new blocks will be affected by this change.
780
781
782[[sysadmin_zfs_special_device]]
783ZFS Special Device
784~~~~~~~~~~~~~~~~~~
785
786Since version 0.8.0 ZFS supports `special` devices. A `special` device in a
787pool is used to store metadata, deduplication tables, and optionally small
788file blocks.
789
790A `special` device can improve the speed of a pool consisting of slow spinning
791hard disks with a lot of metadata changes. For example workloads that involve
792creating, updating or deleting a large number of files will benefit from the
793presence of a `special` device. ZFS datasets can also be configured to store
794whole small files on the `special` device which can further improve the
795performance. Use fast SSDs for the `special` device.
796
797IMPORTANT: The redundancy of the `special` device should match the one of the
798pool, since the `special` device is a point of failure for the whole pool.
799
800WARNING: Adding a `special` device to a pool cannot be undone!
801
802.Create a pool with `special` device and RAID-1:
803
804----
805# zpool create -f -o ashift=12 <pool> mirror <device1> <device2> special mirror <device3> <device4>
806----
807
808.Add a `special` device to an existing pool with RAID-1:
809
810----
811# zpool add <pool> special mirror <device1> <device2>
812----
813
814ZFS datasets expose the `special_small_blocks=<size>` property. `size` can be
815`0` to disable storing small file blocks on the `special` device or a power of
816two in the range between `512B` to `1M`. After setting the property new file
817blocks smaller than `size` will be allocated on the `special` device.
818
819IMPORTANT: If the value for `special_small_blocks` is greater than or equal to
820the `recordsize` (default `128K`) of the dataset, *all* data will be written to
821the `special` device, so be careful!
822
823Setting the `special_small_blocks` property on a pool will change the default
824value of that property for all child ZFS datasets (for example all containers
825in the pool will opt in for small file blocks).
826
827.Opt in for all file smaller than 4K-blocks pool-wide:
828
829----
830# zfs set special_small_blocks=4K <pool>
831----
832
833.Opt in for small file blocks for a single dataset:
834
835----
836# zfs set special_small_blocks=4K <pool>/<filesystem>
837----
838
839.Opt out from small file blocks for a single dataset:
840
841----
842# zfs set special_small_blocks=0 <pool>/<filesystem>
843----
844
845[[sysadmin_zfs_features]]
846ZFS Pool Features
847~~~~~~~~~~~~~~~~~
848
849Changes to the on-disk format in ZFS are only made between major version changes
850and are specified through *features*. All features, as well as the general
851mechanism are well documented in the `zpool-features(5)` manpage.
852
853Since enabling new features can render a pool not importable by an older version
854of ZFS, this needs to be done actively by the administrator, by running
855`zpool upgrade` on the pool (see the `zpool-upgrade(8)` manpage).
856
857Unless you need to use one of the new features, there is no upside to enabling
858them.
859
860In fact, there are some downsides to enabling new features:
861
862* A system with root on ZFS, that still boots using GRUB will become
863 unbootable if a new feature is active on the rpool, due to the incompatible
864 implementation of ZFS in GRUB.
865* The system will not be able to import any upgraded pool when booted with an
866 older kernel, which still ships with the old ZFS modules.
867* Booting an older {pve} ISO to repair a non-booting system will likewise not
868 work.
869
870IMPORTANT: Do *not* upgrade your rpool if your system is still booted with
871GRUB, as this will render your system unbootable. This includes systems
872installed before {pve} 5.4, and systems booting with legacy BIOS boot (see
873xref:sysboot_determine_bootloader_used[how to determine the bootloader]).
874
875.Enable new features for a ZFS pool:
876----
877# zpool upgrade <pool>
878----