-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] nixos/zfs: Don't force import by default #36882
Conversation
Is this a case for using |
I've been running a ZFS pool on NixOS with these options since 2017-06-16, so from my point of view, this PR "works" 🥇 |
@aristidb No, |
I've "tested" this by manually disabling the options. Works for me, and seems like a sensible change. |
Tested this on 3 machines, works without problems for me. |
So, what happens if you import the pool on a live cd first and then try to normal boot? |
@sjau I wasn't sure of when force importing was necessary myself, so I looked it up in the source code! The important bits of the force import condition is here, I quote: if (state != POOL_STATE_EXPORTED && hostid != get_system_hostid())
return (B_TRUE); So, the pool needs to not be exported and the hostid must not matching for a force import to be required. This means that assuming the previous system properly exported the pool it shouldn't occur. Whether that's the case with NixOS I'll have to look into yet. |
Ah yes, so this would only be problematic for the installer if it shut down uncleanly. |
It seems that a shut down doesn't properly export the pool. At least when I have NixOS installed, then do a proper shutdown and then I boot the live iso and try to import the pool, I'll get the message that I need to force-import it. |
Update: NixOS does indeed seem to not export zpools at all on shutdown (the relevant file would be https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/tasks/filesystems/zfs.nix)! So.. This is probably a showstopper for this PR, I might verify this, but I'm pretty sure this would indeed break the installation process for anybody using zfs. This PR should therefore be delayed by at least 2 releases, while a change to export pools properly should be merged for this release. |
Actually, this is not half bad because: Installers from previous NixOS versions will still force import pools, so they continue to work. Now given that proper exporting gets implemented along with this PR everything works out perfectly, because the new installer exports properly and doesn't force import (which the installed system also does) There could however be problems with preexisting zpools and maybe other cases, so I think a period period of 1 release between implementing proper exporting and force importing should be given. |
@infinisil maybe also some end-user documentation just in case. |
@Mic92 Yeah, the options description needs to be adjusted as well |
tl;dr: Force import should be the default, this PR gets closed, a new PR should adjust the options descriptions with info from this comment. So I researched some more. What I got is:
Conclusions
Proposed actions
I did a lot of asking around the past 2 days, so I thought I'd write everything down I discovered for future reference here. If anybody got any more info on this please let me know. Thanks a lot to the people in #zfsonlinux which were really helpful. My proposal should probably be implemented in a separate PR, so I'll close this in a week or so. |
may be worth documenting the 0.001% scenario and what sorts of things they'd need to look out for? |
@grahamc Yeah this should be documented in the option |
if you properly but if you fail to export the pool and just |
This is easier said than done, as it will typically require unmounting all the filesystems on it, and if the root filesystem lives in the pool that could be be difficult. Some distros achieve this by pivoting back into the initramfs for shutting down, but that seems to be quite a fuss. I think just continuing to force import by default is sensible. |
Isn't that only the case for I think an important question that hasn't been addressed here yet is: What are the worst case consequences of each default? With With Per the man page,
which would seem to imply the later. @infinisil are there any additional checks that would prevent pool corruption when using forceImport? Anyway, if we are really trying to decide between an inconvenient default or a dangerous default, my vote is for the inconvenient default. 👍 FWIW I've been using both options set to false since at least December on 5 machines, with no issues. I reinstalled two or three of those machines and didn't need to use |
No, just the pool that has the root filesystem on it, as far as I understand (that's what forceImportAll is for). |
id say you shouldnt be exporting the rootfs pool on shutdown |
Good point, I didn't think of that.
So you either exported the pools before booting into the new system, or you didn't change the host id of the new system. As tested by @cleverca22, the default installation procedure includes a host id change and not exporting it so a force import is needed. So how about this: Disabling force importing by default and adding something to the installer that reminds the user to export the pool before booting into the new system. Then we have both the benefits of not causing data loss in all cases but new users still being able to install a ZFS based NixOS without problems. |
I don't have any real motivation to work on this (the installer change) right now, if somebody else wants to do this, feel free to make your own PR :) |
See 12e77fdc3f6f for reasoning of the previous default enabling of these
options. It is quiet a bit later now and
networking.hostId
being set hasbeen enforced since e9affb4274a4 in 2014.
This should be properly tested by multiple people before merged. If you have tested this on your zfs setup please make a comment. Edit: And if you have set those options to false already, drop a comment as well.
Edit: Make sure to reboot after setting these to properly test it!
Motivation for this change
See 12e77fdc3f6f
Things done
build-use-sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)