Tag

#reliability

7 articles tagged #reliability. See all tags →

Round Robin Distributes Requests, Not Work. And Your Health Check Cuts Both Ways.
New
Tech··9 min

Round Robin Distributes Requests, Not Work. And Your Health Check Cuts Both Ways.

Two things decide whether a load balancer helps. The algorithm, where round robin quietly assumes every request costs the same. And the health check, which is either too shallow to notice a broken server or so deep that one shared dependency marks your entire fleet unhealthy at once.

load balancinghealth checksreliability
Exactly-Once Delivery Does Not Exist. Your Consumer Has To Be Idempotent.
New
Tech··9 min

Exactly-Once Delivery Does Not Exist. Your Consumer Has To Be Idempotent.

Not hard, not expensive, not a premium tier. Impossible, in the proven sense, and it follows from the Two Generals problem. Every product advertising exactly-once is selling at-least-once with deduplication bolted on, which means the work was always going to land on your consumer.

message queuesdistributed systemsreliability
A Circuit Breaker Protects You From Your Dependency, Not the Other Way Around
New
Tech··9 min

A Circuit Breaker Protects You From Your Dependency, Not the Other Way Around

Almost every explanation frames this as being kind to a struggling downstream service. That is a side effect. Its actual job is stopping your own threads from piling up on timeouts, which is how a dependency you barely use takes down a service that does not need it.

circuit breakerresiliencedistributed systems
An Idempotency Key Promises One Execution, Not Eventual Success
New
Tech··9 min

An Idempotency Key Promises One Execution, Not Eventual Success

The design detail that surprises people: Stripe caches the result of the first request under a key even when that result was a 500, and replays the failure to every retry. That is correct, and once you see why, the rest of the design follows, including where most homegrown implementations go wrong.

api designidempotencyreliability
Rate Limiting: The Algorithm Is the Easy Part
New
Tech··9 min

Rate Limiting: The Algorithm Is the Easy Part

Everyone compares token bucket to sliding window and stops there. The decisions that actually determine whether a rate limiter works are what you key it on, whether your Retry-After header is quietly scheduling a thundering herd, and whether a client that gets a 429 can safely retry at all.

api designrate limitingbackend
Why Claude Keeps Going Down, and What It Actually Means
Tech··17 min

Why Claude Keeps Going Down, and What It Actually Means

Anthropic went from $1B to roughly $30B in annual run-rate revenue in 15 months, and Claude now breaks most mornings between 9 AM and noon Pacific. The outages aren't random. They're concentrated exactly where Claude won: long-running coding agents, on the messiest multi-cloud stack in the industry, metered by a rate limiter that sometimes drains a weekly quota in 19 minutes.

anthropicclaudeai infrastructure