nagle's algorithm
1 TopicA New and Better Nagle Algorithm
Last year I wrote about the tradeoffs embedded in Nagle's algorithm. I also described our "AutoNagle" setting, which meant to take some of the pain out of figuring out what to do with this feature. Beginning inTMOS® version13.0, we've substantially improved the logic to make the right decision for your application, without you having to get involved. But first, a refresher. Nagle's Algorithm seeks to reduce the number of packets TCP sends by sacrificing latency. When it has less than one full packet to send, it will wait for additional data until all data in flight is acknowledged. This reduces the waste of sending more headers, and saves power on mobile devices, but it also means that the last packet of a message tends to wait at least a few milliseconds and hold up the next step in the transaction. Whether or not that trade is worth it depends a lot on the specifics of your network. Our Autonagle algorithmalready handled some common cases to make a smart decision. But now, the logic covers a much wider range of circumstances. If there is an HTTP or SSL profile installed on the virtual server*, Autonagle will enable Nagle's algorithm. This is because F5 implementations of both protocols now signal TCP when they have no more data to send, so it doesn't wait around for data that will never arrive. This eliminates the latency penalty, so there is little cost to aggregating packets. If there is no such profile, Autonagle starts with Nagle's algorithm disabled. It will turn Nagle on if it meets two criteria: (1) it detects that the peer is not using delayed acks, as in the original Autonagle; and (2) that the measured Round-trip-time (RTT) is less than 20ms. Under these conditions, Nagle's latency penalty is low enough to make packet reduction worthwhile for the vast majority of applications. As before, the Autonagle settingalwaysconcatenates packets in the buffer regardless of Nagle's algorithm. the auto-enabled mode also allows one undersized packet in flight at a time, which often lets the last packet of a message to go out immediately. When autonagle disables Nagle's algorithm, it now prevents the BIG-IP from splitting incoming packets into multiple smaller ones in most cases. Even if users prioritize speed over packet counts, actuallyincreasingthe number of packets over what the server would do on its own is undesirable, and does not really help with message latency. There are users out there that want to always minimize packet counts, or always minimize latency. For them, we still have the choice to enable or disable Nagle's algorithm altogether. For everyone else, you're probably best off just letting F5 figure out this setting for you. *If there is an HTTP/2 profile present as well, it will not enable Nagle.1.4KViews0likes2Comments