Systems & Backend

Load Shedding

Deliberately dropping or rejecting some requests under overload, to protect a system’s ability to serve the rest.

When incoming demand exceeds what a system can handle, trying to serve every request anyway usually means the system slows down for everyone until it collapses entirely. Load shedding instead deliberately rejects a portion of requests — cheaply and fast, often the least important ones by some priority rule — so the remaining capacity can keep serving the rest with healthy latency, rather than every request degrading together.