Add Btrfs fallback for other Linux distros - #956
Conversation
ZFS is the preferred storage driver, but it isn't available everywhere: WSL, SUSE, Arch, Fedora and other distributions may ship without it. Keying the fallback off the distribution name is too coarse -- it assumes every non-Ubuntu host lacks ZFS and every Ubuntu-derived one has it, neither of which holds for Debian and its derivatives. Instead, detect whether the host provides a usable ZFS kernel module (already loaded, or loadable for the running kernel per modules.dep / modules.builtin) and keep ZFS only then, falling back to btrfs otherwise. Only the kernel module is checked: LXD ships as a snap that bundles the zpool/zfs userspace tools, so a loaded or loadable module is what actually determines usability from the host side. Signed-off-by: Lincoln Wallace <lincoln.wallace@canonical.com>
The storage docs described the Btrfs fallback as WSL-specific. Reword the three affected passages to reflect that Workshop uses ZFS wherever it detects ZFS is available and otherwise falls back to Btrfs, keeping WSL as an example rather than the sole case. Signed-off-by: Lincoln Wallace <lincoln.wallace@canonical.com>
|
It looks to me like the way LXD does it is just trying to load the zfs module; maybe we should follow their lead on that |
|
I think we also need to be more careful about where we use the |
So, considering the case where ZFS was available when the pool was created but later stops being present, most likely because the user installed a different kernel that doesn't ship the ZFS module. What should we do with the now-unusable ZFS pool? I can think of those options:
I believe that the first option is better, right? |
I agree, but we should not suggest removing the pool, it will probably break the workshops using it (if it's even possible to remove it). Instead maybe it's best to reinstall the Workshop snap. We just need to test what actually happens in that scenario, maybe LXD will fail to start and we probably handle that already. |
ZFS is the preferred storage driver, but it isn't available everywhere (Debian, SUSE, Fedora and WSL, among others, may ship without it). Use ZFS only when LXD reports it as a supported storage driver; which LXD determines by trying to load the driver's kernel module, and fall back to Btrfs otherwise. Keying the choice off actual availability rather than the host distribution makes the fallback apply to any host lacking ZFS, while still using ZFS wherever it works. Derive the pool's driver from LXD and the pool itself rather than from a fixed value: pick it from LXD's supported drivers when creating the pool, and read it back from the pool wherever behaviour depends on it. A pool's driver is fixed at creation and ZFS availability can change, so a single cached value can't be trusted. When the workshop pool exists but its storage driver is no longer usable (for example a ZFS pool after booting a kernel without the ZFS module), put the daemon into degraded mode with an actionable message instead of failing obscurely. Closes: canonical#742 Signed-off-by: Lincoln Wallace <lincoln.wallace@canonical.com>
|
@jonathan-conder I've implemented the requested change in I ran this on an Ubuntu Resolute LXD VM, reproducing a Reproduction
Result Instead of surfacing a raw LXD error, the daemon goes into degraded mode with an actionable message: $ workshop list
error: system is not healthy: cannot use the "workshop" storage pool, its storage driver may be unavailable (for example a ZFS pool after booting a kernel without the ZFS module): Error loading "zfs" module: Failed running: modprobe -b zfs
: exit status 1 (modprobe: FATAL: Module zfs not found in directory /lib/modules/7.2.0-rc7)
Boot into a kernel that provides the pool's storage driver, or reinstall Workshop to recreate the pool on an available driverRecovery The ZFS pool can't be deleted through LXD while the module is missing ( On adding a Spread test Let me know if you think we should add a Spread test covering this case. Two caveats:
|
| // ZFS is workshop's preferred storage driver; Btrfs is the fallback used | ||
| // on hosts where LXD reports ZFS as unavailable. | ||
| storageDriverZFS = "zfs" | ||
| storageDriverBtrfs = "btrfs" | ||
|
|
There was a problem hiding this comment.
I don't see what we gain from these constants
| return fmt.Errorf(`cannot use the %q storage pool, its storage driver may be unavailable (for example a ZFS pool after booting a kernel without the ZFS module): %w | ||
| Boot into a kernel that provides the pool's storage driver, or reinstall Workshop to recreate the pool on an available driver`, storagePool, err) |
There was a problem hiding this comment.
is the error returned from GetStoragePool related to this explanation?
There was a problem hiding this comment.
Yes, from my tests, this is what you get:
$ workshop list
error: system is not healthy: cannot use the "workshop" storage pool, its storage driver may be unavailable (for example a ZFS pool after booting a kernel without the ZFS module): Error loading "zfs" module: Failed running: modprobe -b zfs
: exit status 1 (modprobe: FATAL: Module zfs not found in directory /lib/modules/7.2.0-rc7)
Boot into a kernel that provides the pool's storage driver, or reinstall Workshop to recreate the pool on an available driver
So the error returned by GetStoragePool is:
Error loading "zfs" module: Failed running: modprobe -b zfs : exit status 1 (modprobe: FATAL: Module zfs not found in directory /lib/modules/7.2.0-rc7)
Perhaps the explanation should be less verbose? Since the error is already quite informative.
There was a problem hiding this comment.
That's interesting and a bit unexpected. I'd rather not rely on specific LXD error messages if possible, it's likely not something they have tests for. How about checking info.Environment.StorageSupportedDrivers like you did below?
The error message is useful though, does it appear in the LXD logs? Maybe we can direct users there
| func checkStoragePool(conn lxd.InstanceServer, supported []api.ServerStorageDriverInfo) error { | ||
| _, _, err := conn.GetStoragePool(storagePool) | ||
| if err == nil { | ||
| return nil |
There was a problem hiding this comment.
do we need to check if the storage pool driver is supported here?
| // loading each pool's driver, so an existing but currently-unloadable pool | ||
| // (e.g. a ZFS pool whose module is gone) is reported by checkStoragePool | ||
| // rather than failing here. | ||
| names, err := conn.GetStoragePoolNames() |
There was a problem hiding this comment.
do we need to list all the storage pools here? what stops us querying workshop directly?
| inst.Devices = map[string]map[string]string{} | ||
| } | ||
| if err := mergeDevices(inst.Devices, snapshot.Sdks, name); err != nil { | ||
| usesZFS, err := poolUsesZFS(conn) |
There was a problem hiding this comment.
this adds an additional API call to these operations, do we have any info on the impact it has on latency? we could alternatively cache the storage pool driver at launch
I don't see how reinstalling Workshop will help. If LXD is unable to delete the pool then it will still be there after the reinstall.
It's not reasonable to do that in a test. It's a rare enough case that I think some manual recovery steps are OK.
we already do this, it's not a change at all |
Description
Enables Btrfs fallback for other Linux distributions.
ZFS is the preferred storage driver, but it isn't available everywhere: WSL, SUSE, Arch, Fedora, and other distributions may ship without it. Keying the fallback off the distribution name is too coarse; it assumes every non-Ubuntu host lacks ZFS and every Ubuntu-derived one has it, neither of which holds for Debian and its derivatives.
Instead, detect whether the host provides a usable ZFS kernel module, already loaded (present at
/dev/zfsAND/sys/module/zfs) or loadable for the running kernel per modules.dep(5) (/lib/modules/$(uname -r)/modules.dep) or modules.builtin (/lib/modules/$(uname -r)/modules.builtin) and keep ZFS only then, falling back to btrfs otherwise. Only the kernel module is checked: LXD ships as a snap that bundles the zpool/zfs userspace tools, so a loaded or loadable module is what actually determines usability from the host side, tested on Arch Linux and openSUSE tumbleweed.Self-review quick check
isWSL()Docs
Procedure:
Content:
tutorial/andhow-to/sections).docs/.coverage.yamlupdated, coverage tags added (.. artefact).Or: