This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
start:isbtrfsok [2022/03/23 15:06] – created peter | start:isbtrfsok [2024/01/24 19:49] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | BTRFS is working well at the moment on a single disk, like for a home user. For multiple disks the RAID implementation requires too much babysitting. Even RAID1 is a nightmare in some scenarios, where the disks can become out of balance and all sorts of ridiculous things with no feedback to the end user anything is wrong. The development of BTRFS is progressing, | + | DATE CHECKED THIS PAGE WAS VALID: 14/ |
- | If you want some sort of mirror setup over multiple | + | BTRFS is working well at the moment on a single disk, or with RAID1C3 (metadata also RAID1C3 as 2 disks can fail) in a NAS environment with more than 3 disks (ie 4+ disks). For 2 or 3 disks RAID1 is preferred which also works well (data is duplicated so it can still self heal and 1 disk can fail). Note: For RAID 6 to avoid loss of data/ |
+ | |||
+ | mkfs.btrfs -L myraidlabel -m raid1c3 -d raid6 -f < | ||
+ | |||
+ | However as RAID6 is not considered 100% safe yet its better to do something like: | ||
+ | |||
+ | mkfs.btrfs -L myraidlabel -m raid1c3 -d raid1c3 -f < | ||
+ | |||
+ | This command destroys whats on the disks (-f was used = force creation). | ||
+ | |||
+ | Advantage | ||
+ | |||
+ | Once you have more than 12 disks or 24TB across the disks RAID 6 is no longer considered appropriate/ | ||
+ | |||
+ | Dont forget | ||
+ | |||
+ | If the array is already created, | ||
+ | |||
+ | -mconvert=… converts metadata while -dconvert=… converts data, and you can provide both at the same time if you want and so on. | ||
+ | |||
+ | A weekly scrub AND balance is suggested in a RAID environment so that self healing and filesystem maintenance is performed. For a single disk just a monthly scrub is fine and you can run it manually or schedule one with cron if you prefer. If there are any corrupt files, it cant self heal anyway so you would be restoring from backup, and balancing | ||
+ | |||
+ | For single disks in a home PC I use the following mount options in FStab: defaults, | ||
+ | |||
+ | So for example a disk would be mounted as such in the fstab: UUID=383732b1-5e87-4b68-a15a-f044bc559877 / btrfs defaults, | ||
+ | |||
+ | This keeps things nice and tidy and automatically handles trim, and balance. As mentioned there is no self healing on a single disk so you can run a scrub to check for errors every now and again but a backup is needed to restore files. Dont forget to dup metadata even on a single disk. That is in this wiki elsewhere if you dont know how. | ||
+ | |||
+ | Overall BTRFS is production ready now since Linux Kernel 6 onwards. There are a few gotchas but nothing major and if you use RAID1C3/4 data is kept safe. | ||
+ | |||
+ | Also note: autodefrag is no longer needed or reccomended on SSD disks. Do not use this mount option. |