Originally posted by Michael
View Post
Also, if you are benchmarking with two disks, don't use raidz. That is like running RAID 5 with 2 disks, which is pointless. You want `zpool create $poolname mirror $disk0 $disk1` for a RAID 1 equivalent or `zpool create $poolname $disk0 $disk1` for a RAID 0 equivalent.
Lastly, your application start time benchmarks favor ZFS because its cache isn't being properly cleared during your benchmark runs. You might want to restart between runs to ensure that cache is cleared.
Comment