-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for io_uring API? #8716
Comments
This is definitely an interface we'll want to investigate supporting. |
Stumbled upon this today, has anyone given this a poke? A few interesting thoughts - now that 5.4 long term is out and cooking, more people may feel comfortable getting on to a long term version of linux that has io_uring. Secondarily, Ubuntu 20.04 said that they're standardizing around 5.4. The "buzz" @Harvie mentioned seems to still be buzzing |
I think i still do not fully understand how io_uring works... Initialy i was thinking that io_uring would lay between ZFS and harddrive, but now somebody told me it is gonna lay between ZFS and userspace application, so i am bit confused. Do you know more about how this actualy works? |
Is this actually relevant for ZFS? AFAIU io_uring is an interface between userspace applications and the kernel.
Ceph instead got huge performance gains because Ceph's ""backend"" is an userspace application which issues a lot of I/Os (see ceph/ceph#27392). Hypotethically, if ZoL was not a native kernel module but still zfs-fuse, that would gain performance. |
Hi, how are you? any news about this?. This will be a great feature for improves zfs performance. |
It's coming up to 3 years since this post - @behlendorf has there been any progress or updates with regards to io_uring? |
BRTFS -- a COW fs -- has seen improvements from io_uring 🤷 https://www.phoronix.com/news/Linux-6.1-Btrfs |
This was an improvement to how async io was handled when coming from io_uring rather than utilizing io_uring itself. |
OpenZFS supports io_uring, verified by the test suite: https://github.com/openzfs/zfs/blob/master/tests/zfs-tests/tests/functional/io/io_uring.ksh |
I don't...think this should be closed, unless I'm grossly misunderstanding OP's goal. That check just confirms that fio using its io_uring engine doesn't error out. That doesn't say anything about ZFS actually leveraging this interface in any way - which it does not, as of this writing. Feel free to close this again if I'm mistaken, but "there's a ZTS test that fio using io_uring can use OpenZFS" and "OpenZFS leverages io_uring in any way, or decides it's not useful" don't seem like the same goal. |
i could imagine zvol iops and io_uring are a good match |
https://www.phoronix.com/news/Linux-6.6-IOmap-Improvements Does ZFS on Linux use iomap? There is some iomap improvement that leverages io_uring and memory folios to supposedly improve performance of filesystems which are using it. https://lwn.net/Articles/935934/ https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=6016fc9162245c5b109305841f76cca59c20a273 |
I've noticed this new
io_uring
buzz going on, as it was released in Linux 5.1. They claim "up to two times performance gain on CEPH". It should improve multiqueue scalability for NVMe drives. Also the new API is supposed to be easier to use than currently usedAIO
API. So naturaly as enthusiastic ZFS user, i can't do better but ask what are the consequences for ZFS on Linux.Is it likely that we will get some performance boost from this?
Is this hard to implement at ZoL side?
The text was updated successfully, but these errors were encountered: