SysadminGuide

From OnnoWiki
Jump to navigation Jump to search

This page is intended to give a slightly deeper insight into what the various btrfs features are doing behind the scenes.

Data usage and allocation

Btrfs, at its lowest level, manages a pool of raw storage, from which it allocates space for different internal purposes. This pool is made up of all of the block devices that the filesystem lives on, and the size of the pool is the "total" value reported by the ordinary df command. As the filesystem needs storage to hold file data, or filesystem metadata, it allocates chunks of this raw storage, typically in 1GiB lumps, for use by the higher levels of the filesystem. The allocation of these chunks is what you see as the output from btrfs filesystem show. Many files may be placed within a chunk, and files may span across more than one chunk. A chunk is simply a piece of storage that btrfs can use to put data on.

RAID and data replication

Btrfs's "RAID" implementation bears only passing resemblance to traditional RAID implementations. Instead, btrfs replicates data on a per-chunk basis. If the filesystem is configured to use "RAID-1", for example, chunks are allocated in pairs, with each chunk of the pair being taken from a different block device. Data written to such a chunk pair will be duplicated across both chunks.

Stripe-based "RAID" levels (RAID-0, RAID-10) work in a similar way, allocating pairs (RAID-0) or more (RAID-10) of chunks, and then perform striping of data at a level smaller than a chunk. So, for a RAID-10 filesystem, data may be stored like this:

Storing file: 01234567...89

Block devices:  /dev/sda   /dev/sdb   /dev/sdc   /dev/sdd

Chunks:         +-A1---+   +-A2---+   +-A3---+   +-A4---+
                |   0  |   |   1  |   |   0  |   |   1  |  }
                |   2  |   |   3  |   |   2  |   |   3  |  } stripes within a chunk
                |   4  |   |   5  |   |   4  |   |   5  |  }
                |   6  |   |   7  |   |   6  |   |   7  |  }
                | ...  |   | ...  |   | ...  |   | ...  |  }
                +------+   +------+   +------+   +------+

                +-B3---+   +-B2---+   +-B4---+   +-B1---+    a second set of chunks may be needed for large files.
                |   8  |   |   9  |   |   9  |   |   8  |
                +------+   +------+   +------+   +------+

Note that chunks within a RAID grouping are not necessarily always allocated to the same devices. This allows btrfs to do data duplication on block devices with varying sizes, and still use as much of the raw space as possible. With RAID-1 and RAID-10, only two copies of each byte of data are written, regardless of how many block devices are actually in use on the filesystem.

Balancing

A btrfs balance operation rewrites things at the level of chunks. It runs through all chunks on the filesystem, and writes them out again, discarding and freeing up the original chunks when the new copies have been written. This has the effect that if data is missing a replication copy (e.g. from a missing/dead disk), new replicas are created. The balance operation also has the effect of re-running the allocation process for all of the data on the filesystem, thus more effectively "balancing" the data allocation over the underlying disk storage.

Copy on Write

(Sorry, haven't got round to writing this yet)

Subvolumes

A subvolume in btrfs is not the same as an LVM logical volume, or a ZFS subvolume. With LVM, a logical volume is a block device in its own right; this is not the case with btrfs. A btrfs subvolume is not a block device, and cannot be treated as one.

Instead, a btrfs subvolume can be thought of as a POSIX file namespace. This namespace can be accessed via the top-level subvolume of the filesystem, or it can be mounted in its own right. So, given a filesystem structure like this:

toplevel
  `--- dir_a                * just a normal directory
  |         `--- p
  |         `--- q
  `--- subvol_z             * a subvolume
            `--- r
            `--- s

the root of the filesystem can be mounted, and the full filesystem structure will be seen at the mount point; alternatively the subvolume can be mounted (with the mount option subvol=subvol_z), and only the files r and s will be visible at the mount point.

A btrfs filesystem has a default subvolume, which is initially set to be the top-level subvolume. It is the default subvolume which is mounted if no subvol or subvolid option is passed to mount.

Changing the default subvolume with btrfs subvolume default will make the top level of the filesystem inaccessible, except by use of the subvolid=0 mount option.

Snapshots

A snapshot is simply a subvolume that shares its data (and metadata) with some other subvolume, using btrfs's COW capabilities. Once a [writable] snapshot is made, there is no difference in status between the original subvolume, and the new snapshot subvolume. To roll back to a snapshot, unmount the modified original subvolume, and mount the snapshot in its place. At this point, the original subvolume may be deleted if wished. Since a snapshot is a subvolume, snapshots of snapshots are also possible.

Managing snapshots

One possible structure for managing snapshots (particularly on a root filesystem) is to leave the real filesystem root empty, except for subvolumes, and to set a default subvolume. The true filesystem root can then be mounted temporarily while subvolume operations are being done, and unmounted again afterwards:

/etc/fstab:

LABEL=btr_pool      /                btrfs   defaults                     0 0
LABEL=btr_pool      /home            btrfs   defaults,subvol=home         0 0
LABEL=btr_pool      /media/btrfs     btrfs   defaults,noauto,subvolid=0   0 0

Filesystem layout:

/
 `--- root             * default subvolume
 |       `--- bin
 |       `--- etc
 |       `--- usr
 |            ...
 `--- root_snapshot_2011_01_09
 |       `--- bin
 |       `--- etc
 |       `--- usr
 |       `--- ...
 `--- root_snapshot_2011_01_10
 |       ...
 `--- home
 |       ...
 `--- home_snapshot_A
         ...

Creating a snapshot:

# mount /media/btrfs
# cd /media/btrfs
# btrfs subvolume snapshot root root_snapshot_2011_01_11
# cd ~
# umount /media/btrfs

Rolling back a snapshot:

# mount /media/btrfs
# umount /home
# mount -o defaults,subvol=home_snapshot_A /dev/sda /home
# btrfs subvolume delete /media/btrfs/home                   # optional
# umount /media/btrfs

Template:Note