Yannick Boetzel

Results 55 comments of Yannick Boetzel

I haven't looked into it or tested it, but I would think the relevant commands are still compatible in OpenZFS 2.0. There might be some new features that are not...

Thanks for letting me know, that's good to hear!

Yes, you need a more recent version of ZFS to use resumable send. I might put in a more meaningful error message at some point.

I will reduce the mbuffer size in the future anyway, as 512MB is almost never used, I think I will use something like 128MB. That is something any system using...

For compression the algorithm must be installed as a system package, e.g. through `apt install lz4` on Ubuntu. pyznap cannot use the built-in lz4 from zfs. About the missing file:...

If you don't want any compression you can set `compress = none`. Default is `lzop`, which helps quite a bit over ssh when your data is compressible, like lots of...

There are slow and non-slow tests, you can run them directly with pytest using either pytest -v tests/ to run only the non-slow tests or pytest -v -m 'slow' tests/...

Feel free to do a pull request :). I might change this at some point, but at the moment I have other priorities.

How exactly does it not show, when using `zfs list`?

With that config you're sending `vm-100-disk-0` directly to `vmbaks/data`, not the sub dataset. You have to specify the full path in the config. You should destroy the dataset and recreate...