Create Back Pressure
Learn about bounded and unbounded queues, back pressure in TCP, thread waiting, and performance problems.
Queues in performance
Every performance problem starts with a queue backing up somewhere. Maybe it’s a socket’s listening queue. Maybe it’s the OS’s run queue or the database’s I/O queue. If a queue is unbounded, it can consume all available memory. As the queue grows, ...