Re: Is user-space AIO dead?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Attached are the results of some simple testing I did in ods format. These tests involved having dd read the first GB of data from my two drive sata (fake)raid0 array with varying numbers of concurrent aio operations ( except for the original, non aio dd of course ).

I performed these tests with cpufreq disabled and filesystems mounted with noatime to insure no disturbances. I also set the IO scheduler to noop, otherwise the default scheduler reordered the IO requests which was not good for sequential throughput. I used commands like this:

sync
dd bs=512 count=1 iflag=direct if=/dev/sda of=/dev/null
dd bs=512 count=1 iflag=direct if=/dev/sdb of=/dev/null
time dd bs=128KiB count=32768 iflag=direct if=/dev/mapper/via_hfciifae of=/dev/null

The first two commands were to make sure the drive head was on track zero, otherwise the TCQ on the drives kicked in and reordered some of the earlier reads as the head seeked to track zero.

The results show a rather large increase in throughput for block sizes under 128 KB, with a smaller improvement on larger block size. Likewise, the cpu time used was significantly lower, especially with block sizes less than 128 KB. In most cases, the original dd uses 2-3 times more cpu time than the aio dd.

The original dd reached near peak throughput ( 93.4 MB/s ) at a block size of 128 KB. I believe this is due in part to that being the stripe width of the array, so smaller block sizes did not keep both drives operating full time. In contrast all of the aio trials reached peak throughput of 97.x MB/s with a block size of only 32 KB, and at the smallest block size of 16 KB, the aio(16) trial managed more than 20% higher throughput than the non aio dd ( 72.1 vs 59.7 MB/s ), and did so using 1/7th the cpu time.

To show the difference O_DIRECT makes, at 128 KB block size the original dd with O_DIRECT managed 93.4 MB/s using 0.906 seconds of CPU time. Without O_DIRECT, the original dd only sustains 82.6 MB/s and uses a whopping 2.912 seconds of cpu time, or more than triple the time without O_DIRECT, and 13x more cpu time than the aio(4) test at that block size!

Kenny Simpson wrote:
--- Phillip Susi <[email protected]> wrote:

I actually hacked up dd to use async IO ( via io_submit ) in conjunction with O_DIRECT and it did noticeably improve ( ~10% ish ) both throughput and cpu utilization. I have an OO.o spreadsheet showing the results of some simple benchmarking with various parameters I did at home, which I will post later this evening. Of course, dd is a simplistic case of sequential IO. If you have something like a big database that needs to concurrently handle dozens or hundreds of random IO requests at once, O_DIRECT async IO is definitely going to be a clear winner.


The part I am writing looks like a transaction log writer:
  Lots of sequential small-ish writes (call each quanta a transaction)
  Must be written to stable storage
  Must know when the writes are completed
  The data is only read back for recovery processing

  In the past, the way I found to have worked best is to have a dedicated thread pulling
transactions off a queue and doing the blocking syncronous writes either by write(v)/fsync or
write(v) on a file opened with O_SYNC | O_DIRECT.  Once the fsync returned, the thread would
signal completion and grab the next batch to start writing.
  This works very well and can easily max out any real device's bandwidth, but incurs more latency
than should be absolutely needed due to the extra context switching from the completion
signalling.

  I am hoping AIO can be used to reduce the latency, but was a bit discouraged after reading the
IBM paper.

  I am looking forward to your post reguarding dd.

thanks,
-Kenny


__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux