Monero blockchain is an LMDB. LMDB uses copy-on-write. btrfs with copy-on-write may decrease write performance of LMDB. However, the bottleneck during monero blockchain synchronization seems to be random read instead of write. btrfs without copy-on-write is as unreliable as ext4 or xfs without journal.
I'm considering btrfs, ext4, and xfs. Which one is the best for monero blockchain synchronization on HDD?
Does autodefrag btrfs mount option degrade synchronization performance? Does btrfs compression improve random read performance?
Sync performance is important. Resilience against power loss is considered, too.