UDP
User Datagram Protocol: a connectionless transport protocol that trades reliability for speed. No handshake, no ordering, no retransmission. Used for video streaming and gaming.
What is UDP?
User Datagram Protocol: a connectionless transport protocol that trades reliability for speed. No handshake, no ordering, no retransmission. Used for video streaming and gaming.
UDP is a foundational concept that sits in the Core Fundamentals area of system design. Engineers reach for it whenever they need to reason about real-world trade-offs in that space — not just for textbook correctness, but because real production systems at companies like Netflix, Amazon, and Google make these decisions every day.
If you want to go deeper than this definition — with diagrams, code, and a quiz to lock it in — work through the "UDP" lesson linked below. It walks through the why, the mechanism, the trade-offs, and how the giants actually use it in production.
Learn UDP in depth
Full interactive lesson with diagrams, code examples, real-world references, and a quiz.
Open the UDP lessonRelated lessons
Lessons that touch on UDP as part of a larger topic.
UDP
The 'fire and forget' transport protocol that prioritizes speed over reliability
intermediate · cloud infrastructure
HTTP/3 QUIC
The next generation of HTTP, built on UDP with QUIC for zero round-trip connections and true multiplexing
intermediate · api design protocols
StatsD
The simplest metrics protocol, fire-and-forget UDP packets for lightweight application instrumentation
intermediate · observability monitoring
QUIC
The protocol replacing TCP for the modern web, built on UDP with encryption, multiplexing, and zero-RTT built in
intermediate · cloud infrastructure
See also
Related glossary terms you might want to look up next.
TCP
A reliable transport protocol that guarantees data arrives in order and without errors. It uses a three-way handshake to establish connections.
HTTP
The protocol powering the web. A request-response model where clients ask for resources and servers respond. Stateless by design.
Latency
The time delay between sending a request and getting a response. Amazon found every 100ms of extra latency costs 1% in sales.