▲ | arghwhat 13 hours ago | |||||||
If it relied on OpenZFS, then I wouldn't be too surprised. The whole ARC thing for example, sidestepping the general block cache, feels like a major hack resulting from how it was brutally extracted from Solaris at the time... The way zfs just doesn't "fit" was why I had hope for btrfs... ZFS is still great for a file server, but wouldn't use it on a general purpose machine. | ||||||||
▲ | drewg123 11 hours ago | parent | next [-] | |||||||
Solaris had a unified page cache, and ARC existed separately, along side of it there as well. One huge problem with ZFS is that there is no zero copy due to the ARC wart. Eg, if you're doing sendfile() from a ZFS filesystem, every byte you send is copied into a network buffer. But if you're doing sendfile from a UFS filesystem, the pages are just loaned to the network. This means that on the Netflix Open Connect CDN, where we serve close to the hardware limits of the system, we simply cannot use ZFS for video data due to ZFS basically doubling the memory bandwidth requirements. Switching from UFS to ZFS would essentially cut the maximum performance of our servers in half. | ||||||||
▲ | johannes1234321 11 hours ago | parent | prev | next [-] | |||||||
Even on Solaris the ARC existed. ZFS replaces a lot of systems traditionally not directly related to a Filesystem implementation. For instance using the `zfs` tool one wouldn't only configure file system properties, but also control NFS exports, which traditionally was done using /etc/exports. | ||||||||
| ||||||||
▲ | goku12 11 hours ago | parent | prev | next [-] | |||||||
Can you elaborate the last paragraph? In what way doesn't zfs fit? (I couldn't make it out from the first two paragraphs.) Where did btrfs fall short of your expectations? Why would you avoid zfs on general purpose machines if you deem it good enough for file servers? | ||||||||
| ||||||||
▲ | pmarreck 9 hours ago | parent | prev [-] | |||||||
I've been booting off ZFS-on-root for years. |