asynchronous IO io_submit latency in Ubuntu Linux

Linux AIO (sometimes known as KAIO or libaio) is something of a black art where experienced practitioners know the pitfalls but for some reason it’s taboo to tell someone about gotchas they don’t already know. From scratching around on the web and experience I’ve come up with a few examples where Linux’s asynchronous I/O submission via io_submit() may become (silently) synchronous, thereby turning it into a blocking (i.e. no longer fast) call:

  1. You’re submitting buffered (aka non-direct) I/O. You’re at the mercy of Linux’s caching and your submit can go synchronous when:
    • What you’re reading isn’t already in the “read cache”.
    • The “write cache” is full and the new write request can’t be accepted until some existing writeback has been completed.
  2. You’re asking for direct I/O to a file in a filesystem but for whatever reason the filesystem decides to ignore the O_DIRECT “hint” (e.g. how you submitted the I/O didn’t meet O_DIRECT alignment constraints, filesystem or particular filesystem’s configuration doesn’t support O_DIRECT) and it chooses to silently perform buffered I/O instead, resulting in the case above.
  3. You’re doing direct I/O to a file in a filesystem but the filesystem has to do a synchronous operation (such as reading metadata/updating metadata via writeback) in order to fulfill your I/O. A common example of this is issuing an “allocating write” (e.g. because you’re appending/extending the end of a file or filling in an unallocated hole) and this sounds like what the questioner is doing (“appended to the file”). Some filesystems such as XFS try harder to provide good AIO behaviour but even there a user has to be careful to avoid sending certain operations to the filesystem in parallel otherwise io_submit() again will turn into a blocking call while the other operation completes. The Seastar framework contains a small lookup table of filesystem specific cases.
  4. You’re submitting too much outstanding I/O. Your disk/disk controller will have a maximum number of I/O requests that can be processed at the same time and there are maximum request queue sizes for each specific device (see the /sys/block/[disk]/queue/nr_requests documentation and the un(der) documented /sys/block/[disk]/device/queue_depth) within the kernel. Making I/O requests back-up and exceed the size of the kernel queues leads to blocking.
    • If you submit I/Os that are “too large” (e.g. bigger than /sys/block/[disk]/queue/max_sectors_kb but the true limit may be something smaller like 512 KiB) they will be split up within the block layer and go on to chew up more than one request.
    • The system global maximum number of concurrent AIO requests (see the /proc/sys/fs/aio-max-nr documentation) can also have an impact but the result will be seen in io_setup() rather than io_submit().
  5. A layer in the Linux block device stack between the request and the submission to the disk has to block. For example, things like Linux software RAID (md) can make I/O requests passing through it stall while updating RAID 1 metadata on individual disks.
  6. Your submission causes the kernel to wait because:
    • It needs to take a particular lock (e.g. i_rwsem) that is in use.
    • It needs to allocate some extra memory or page something in.
  7. You’re submitting I/O to a file descriptor that’s not a “regular” file or a block device (e.g. your descriptor is a pipe or a socket).

The list above is not exhaustive.

With >= 4.14 kernels the RWF_NONBLOCK flag can be used to make some of the blocking scenarios above noisy. For example, when using buffering and trying to read data not yet in the page cache, the RWF_NONBLOCK flag will cause submission to fail with EAGAIN when blocking would otherwise occur. Obviously you still a) need a 4.14 (or later) kernel that supports this flag and b) have to be aware of the cases it doesn’t cover. I notice there are patches that have been accepted or are being proposed to return EAGAIN in more scenarios that would otherwise block but at the time of writing (2019) RWF_NONBLOCK is not supported for buffered filesystem writes.

Alternatives

If your kernel is >=5.1, you could try using io_uring which does far better at not blocking on submission (it’s an entirely different interface and was new in 2020).

References

Related:

Hopefully this post helps someone (and if does help you could you upvote it? Thanks!).

Leave a Comment