Backend & systems·Concurrency and coordination
one slow request at the front of the queue holds up every fast request stuck behind it.
Head-of-line blocking
When a serialised path forces later work to wait on an earlier, slower item. It appears in HTTP/1.1 connections, in single-partition consumers, and in any single-threaded processing queue. The fixes are multiplexing, more partitions, or separating slow work into its own lane so it cannot block the fast one.