Forgot your password?

typodupeerror

Comment: So what about performance ? (Score 1) 123

by Lennie (#40193943) Attached to: Making ZFS and DTrace Work On Ubuntu Linux

I did a quick test with 2 identical VMs on my desktop with Intel SSD, I installed the ubuntu-zfs as from the article and I installed btrfs-tools.

The VMs have 4 CPUs and 4GB of memory, 3 virtual disks.

The btrfs has RAID1 data and meta data, the ZFS setup used RAIDZ as in the article:

mkfs.btrfs -m raid1 -d raid1 /dev/vdb1 /dev/vdc1

(I needed to create the partitions, for some reason the ZFS version didn't want to work without it)

My quick stupid test, create a large file:

ZFS:
500+0 records in
500+0 records out
524288000 bytes (524 MB) copied, 16.8489 s, 31.1 MB/s

real 0m16.853s
user 0m0.000s
sys 0m0.480s

btrfs:
500+0 records in
500+0 records out
524288000 bytes (524 MB) copied, 15.232 s, 34.4 MB/s

real 0m15.234s
user 0m0.000s
sys 0m0.640s

For a man to truly understand rejection, he must first be ignored by a cat.

Working...