Backpressure - CI/CD Glossary Definition
Backpressure is the mechanism by which a downstream component signals an upstream producer to slow down when it cannot keep up, preventing unbounded queues, memory growth, and crashes.
How it shows up
TCP flow control, bounded queues that block on full, and reactive streams demand signals are all backpressure. Without it, a fast producer overruns a slow consumer until memory runs out.
Related guides
Rate Limiting - CI/CD Glossary DefinitionRate Limiting: Rate limiting caps how many requests a client can make in a time window, returning HTTP 429 (T…
Circuit Breaker - CI/CD Glossary DefinitionCircuit Breaker: A circuit breaker is a resilience pattern that stops calling a failing dependency after erro…