Categories

Donate

Advert

ZFS Training Exercises

In 2015 I ran a training session on BTRFS and ZFS. Here are the notes for ZFS updated for the latest versions of everything when running on KVM. You can do all the same exercises on a non virtual machine, but it’s safest not to do this on a machine with important data. For the KVM setup I use /dev/vdc, /dev/vdd, and /dev/vde are the devices for test data.

For running ZFS on Linux in serious use I recommend having more than 4G of RAM in the system or VM that’s doing it to prevent kernel OOM issues. You should be able to complete this training exercise on a 64bit VM with 2G of RAM. To do this on Debian/Buster just replace the references to “bullseye” with “buster” in the APT configuration.

  1. Installing zfsonlinux on Debian/Bullseye
    1. Note that /etc/apt/sources.list has the following lines (the “contrib” is very important):
      deb http://mirror.internode.on.net/pub/debian/ bullseye-updates contrib main
      deb http://deb.debian.org/debian bullseye-backports contrib main
      
    2. Run the following commands:
      apt install linux-headers-amd64
      apt install -t bullseye-backports dkms spl-dkms zfs-dkms
      apt install -t bullseye-backports zfsutils-linux
      The apt command installing spl-dkms takes ages, 4 minutes real time and 9 minutes CPU time on my last test on a 4 core VM. It will take much longer if several people are doing it at the same time.
  2. Making the filesystem
    1. Create the pool:
      zpool create -o ashift=12 nyancat raidz /dev/vdc /dev/vdd /dev/vde
      NB You need to add a “-f” to overwrite the BTRFS filesystem
    2. Make some default filesystem settings:
      zfs set devices=off nyancat
      zfs set atime=off nyancat
      zfs set setuid=off nyancat
      zfs set compression=on nyancat
    3. Get information on the pool:
      zfs get all nyancat|less
      zpool list
      zpool status
    4. Make a filesystem:
      zfs create nyancat/friday
      df -h
    5. See if there are any errors, shouldn’t be any (yet):
      zpool scrub nyancat
      zpool status
    6. Copy some files to the filesystem:
      cp -r /usr /nyancat/friday
    7. Scrub the filesystem:
      zpool scrub nyancat
      zpool status
    1. Online corruption

    2. Corrupt the filesystem:
      dd if=/dev/zero of=/dev/vdd bs=1024k count=2000 seek=50
    3. Scrub again, should give a warning about errors:
      zpool scrub nyancat
      zpool status
    4. Verify that the data is intact:
      diff -ru /usr /nyancat/friday/usr
    5. Corrupt it again:
      dd if=/dev/zero of=/dev/vdd bs=1024k count=2000 seek=50
    6. Unmount the ZFS filesystems and export (stop using) the zpool:
      zfs umount -a
      zpool export -a
      zpool status
    7. “Import” the pool, mount the filesystems, and note that the checksum error count is back to zero (it counts since the last mount not for all time – unlike BTRFS):
      zpool import -a
      zfs mount -a
      zpool status
    8. Check that the data is still intact and look for increases in the error count:
      zpool status
      diff -ru /usr /nyancat/friday/usr
      zpool status
    1. Offline corruption

    2. Umount the filesystem and corrupt the start of one device:
      zfs umount -a
      zpool export -a
      dd if=/dev/zero of=/dev/vdd bs=1024k count=200
    3. Try mounting it again which will work even though one block device is unavailable:
      zpool import -a
      zpool status
    4. Replace the missing device, look for the device name in the “zpool status” output to replace “123456789” in the following sample command:
      zpool replace -f nyancat 123456789 /dev/vdd
    5. Check that everything is ok:
      zpool status
      diff -ru /usr /nyancat/friday/usr

Leave a Reply

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>