Skip to content

uoenoplab/Homa_io_uring

Repository files navigation

This repo contains an implementation of the Homa transport protocol as a Linux kernel module.

  • For more information on Homa in general, see the Homa Wiki.

  • More information about this implementation and its performance are available in the paper A Linux Kernel Implementation of the Homa Transport Protocol, which appeared in the USENIX Annual Technical Conference in July, 2021.

  • A synopsis of the protocol implemented by this module is available in protocol.md.

  • As of August 2020, Homa has complete functionality for running real applications, and its tail latency is more than 10x better than TCP for all workloads I have measured (Homa's 99-th percentile latency is usually better than TCP's mean latency). Here is a list of the most significant functionality that is still missing:

    • The incast optimization from Section 3.6 of the SIGCOMM paper has not been implemented yet. If you would like to test Homa under large incasts, let me know and I will implement this feature.
    • Socket buffer memory management needs more work. Large numbers of large messages (hundreds of MB?) may cause buffer exhaustion and deadlock.
  • Please contact me if you have any problems using this repo; I'm happy to provide advice and support.

  • The head is known to work under Linux 5.17.5 and 5.18. In the past it has run under 5.4.3 and 4.15.18; you can access these versions with branches named linux_5.4.3 and linux_4.15.18. These older branches are out of date feature-wise: recent commits have not been back-ported to them. Other versions of Linux have not been tested and may require code changes (the upgrade from 4.15.18 to 5.4.3 took only about a day). If you get Homa working on some other version, please submit a pull request for the required code changes.

  • There now exists support for using Homa with gRPC: see the GitHub repo.

  • To build the module, type make all; then type sudo insmod homa.ko to install it, and sudo rmmod homa to remove an installed module.

  • For best Homa performance, you should make the following configuration changes:

    • Enable priority queues in your switches, selected by the 3 high-order bits of the DSCP field in IP packet headers. You can use sysctl to configure Homa's use of priorities (e.g., if you want it to use fewer than 8 levels). See the man page homa.7 for more info.
    • Enable jumbo frames on your switches and on the Linux nodes.
    • Set the rtt_bytes parameter via sysctl to match your network's latency and bandwidth.
    • It may also be useful to set other Linux networking parameters. As one example, see the script cloudlab\bin\start_xl170, which is what I use to configure my test nodes.
  • NIC support for TSO: Homa can use TCP Segmentation Offload (TSO) in order to send large messages more efficiently. To do this, it uses a header format that matches TCP's headers closely enough to take advantage of TSO support in NICs. It is not clear that this approach will work with all NICs, but the following NICs are known to work:

    • Mellanox ConnectX-4, ConnectX-5, and ConnectX-6

    There have been reports of problems with the following NICs (these have not yet been explored thoroughly enough to know whether the problems are insurmountable):

    • Intel E810 (ice), XXV710 (i40e), XL710

    Please let me know if you find other NICs that work (or NICs that don't work). If the NIC doesn't support TSO for Homa, then Homa will perform segmentation in software, but that's quite a bit slower. If for some reason software GSO doesn't work (it's fairly new in Homa), then messages larger than the maximum packet size may hang or result in very poor performance. If this happens, you'll need to use sysctl to ensure that max_gso_size is the same as the maximum packet size.

  • A collection of man pages is available in the "man" subdirectory. The API for Homa is different from TCP sockets.

  • The subdirectory "test" contains unit tests, which you can run by typing "make" in that subdirectory.

  • The subdirectory "util" contains an assortment of utility programs that you may find useful in exercising Homa. Compile them by typing make in that subdirectory. Most notable is the cperf family of programs, which will run a variety of benchmarks on a cluster of nodes. The file cperf.py contains library functions for benchmarking, which are used by a variety of benchmarks with names starting with cp_.

  • Some additional tools you might find useful:

    • Homa collects various metrics about its behavior, such as the size distribution of incoming messages. You can access these through the file /proc/net/homa_metrics. The script util/metrics.py will collect metrics and print out all the numbers that have changed since its last run.
    • Homa exports a collection of configuration parameters through the sysctl mechanism. For details, see the man page homa.7.

Significant recent improvements

  • November 2022: Implemented software GSO for Homa.
  • September 2022: Added support for IPv6, as well as completion cookies. This required small but incompatible changes to the API. Many thanks to Dan Manjarres for contributing these improvements.
  • September 2022: Homa now works on Linux 5.18 as well as 5.17.7
  • June 2022: upgraded to Linux 5.17.7.
  • November 2021: changed semantics to at-most-once (servers can no longer see multiple instances of the same RPC).
  • August 2021: added new versions of the Homa system calls that support iovecs; in addition, incoming messages can be read incrementally across several homa_recv calls.
  • November 2020: upgraded to Linux 5.4.3.
  • June 2020: implemented busy-waiting during homa_recv: shaves 2 microseconds off latency.
  • June 2020: several fixes to prevent RPCs from getting "stuck", where they never make progress.
  • May 2020: got priorities working correctly using the DSCP field of IP headers.
  • December 2019: first versions of cperf ("cluster performance") benchmark.
  • December 2019 - June 2020: many improvements to the GRO mechanism, including better hashing and batching across RPCs; improves both throughput and latency.
  • Fall 2019: many improvements to pacer, spread over a couple of months.
  • November 6, 2019: reworked locking to use RPC-level locks instead of socket locks for most things (significantly reduces socket lock. contention). Many more refinements to this in subsequent commits.
  • September 25, 2019: reworked timeout mechanism to eliminate over-hasty timeouts. Also, limit the rate at which RESENDs will be sent to an overloaded machine.
  • August 1, 2019: GSO and GRO are now working.
  • March 13, 2019: added support for shutdown kernel call, plus poll, select, and epoll. Homa now connects will all of the essential Linux plumbing.
  • March 11, 2019: extended homa_recv API with new arguments: flags, id.
  • February 16, 2019: added manual entries in the subdirectory "man".
  • February 14, 2019: output queue throttling now seems to work (i.e., senders implement SRPT properly).
  • November 6, 2019: timers and packet retransmission now work.