Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12

Thread: ZFS performance

  1. #11
    Join Date
    Nov 2005
    Location
    Tumba, Sweden
    Beans
    139
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: ZFS performance

    I did not watch it the whole time but last night it finished in 1 hour 59 minutes.
    Given that I have about 654GB, that should give an average of 94MB/s, not that great.

    But I do get excellent transfer speed with your command, I posted them above unfortunately I fogot to separate it from the rest. Here it is again:

    Compression off:
    Code:
    root@lnx:/z1pool/test# dd if=/dev/zero of=zerofile.000 bs=1M count=10000; sleep 30 ; dd if=zerofile.000 of=/dev/null bs=1M
    10000+0 records in
    10000+0 records out
    10485760000 bytes (10 GB) copied, 17.2174 s, 609 MB/s
    10000+0 records in
    10000+0 records out
    10485760000 bytes (10 GB) copied, 9.93469 s, 1.1 GB/s
    Compression on:
    Code:
    root@lnx:/z1pool/test# dd if=/dev/zero of=zerofile.000 bs=1M count=10000; sleep 30 ; dd if=zerofile.000 of=/dev/null bs=1M
    10000+0 records in
    10000+0 records out
    10485760000 bytes (10 GB) copied, 1.92519 s, 5.4 GB/s
    10000+0 records in
    10000+0 records out
    10485760000 bytes (10 GB) copied, 0.904744 s, 11.6 GB/s
    However dropping the block size reduces the speed significantly, but it seems the CPU will spike too 99% on the dd process, so I guess it is not zfs causing the bottleneck here.

    Is there some other way to test the performance, I read about Bonnie, but I can't figure out how to read the results, or compare them.

  2. #12
    Join Date
    Jul 2010
    Location
    Michigan, USA
    Beans
    2,136
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: ZFS performance

    With 16GB of RAM, those results are hitting RAM. To test the disks properly, you'll really need to use a count that will yield files at least 2x the amount of RAM you have, and with compression turned on , your dd values aren't really realistic anymore, although they look awesome

    Here's an old post of mine talking about setting up bonnie.
    Last edited by rubylaser; September 25th, 2012 at 02:07 AM.

Page 2 of 2 FirstFirst 12

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •