Home / Companies / Cloudflare / Blog / Post Details
Content Deep Dive

Accelerating UDP packet transmission for QUIC

Blog post from Cloudflare

Post Details
Company
Date Published
Author
Alessandro Ghedini
Word Count
1,454
Language
English
Hacker News Points
18
Summary

This article discusses optimizing QUIC (Quick UDP Internet Connections), a new internet transport protocol designed to accelerate HTTP traffic. It focuses on measuring throughput of QUIC connections and explores various techniques that help mitigate the disadvantage for UDP, which is used by QUIC. The author presents test results using h2load as the client and NGINX with Cloudflare's open-source QUIC and HTTP/3 module as the server. Techniques discussed include using sendmmsg() instead of sendmsg(), enabling UDP segmentation offloading, and evolving from AFAP (As Fast As Possible) to packet pacing for better network performance. The author also highlights some challenges in integrating these techniques with pacing mechanisms.