Internships/ProjectIdeas/VirtiofsdAio

From QEMU
Revision as of 13:37, 7 February 2025 by Stefanha (talk | contribs) (Stefanha moved page Internships/VirtiofsdAio to Internships/ProjectIdeas/VirtiofsdAio without leaving a redirect)

Asynchronous request handling for virtiofsd

Summary: Make virtiofsd’s request handling asynchronous, allowing single-threaded parallel request processing.

virtiofsd is a virtio-fs device implementation, i.e. grants VM guests access to host directories. In its current state, it processes guest requests one by one, which means operations of long duration will block processing of others that could be processed more quickly.

With asynchronous request processing, longer-lasting operations could continue in the background while other requests with lower latency are fetched and processed in parallel. This should improve performance especially for mixed workloads, i.e. one guest process executing longer-lasting filesystem operations, while another runs random small read requests on a single file.

Your task is to:

  • Get familiar with a Linux AIO interface, preferably io_uring
  • Have virtiofsd make use of that interface for its operations
  • Make the virtiofsd request loop process requests asynchronously, so requests can be fetched and processed while others are continuing in the background
  • Evaluate the resulting performance with different workloads

Links:

Details:

  • Project size: 350 hours
  • Skill level: intermediate
  • Language: Rust
  • Mentors: Hanna Czenczek (hreitz@redhat.com), German Maglione (gmaglione@redhat.com)