S3

Stop Buying Expensive Databases. S3 Already Is One.

S3 is object storage — dumb, slow, eventually consistent. Yet engineers built a fully transactional, crash-safe key-value database on top of it using LSM trees, conditional writes, and fencing tokens. The real lesson isn’t about S3. It’s that the line between “storage” and “database” is a convention you build, not a law you obey. If you understand your invariants, the cheapest substrate is often enough.

The Cloudflare R2 Disaster: Why Your Cloud Storage Is a Lie

Cloudflare R2’s recent outage exposed a dark truth about cloud storage: the real risk isn’t downtime, but the opaque recovery and inaccessible support. Users trusted a service that vanished files without a clear path back. This article argues that customer support and failure recovery are now the true competitive differentiators, not price or features. If you store anything in the cloud, this is a wake-up call to architect for failure and vet vendors on their human response, not just their dashboard.

Your Upload Server Is a $10,000 Paperweight. Here’s the Fix.

For decades, upload servers have used local disk buffers as a crutch, creating a hidden bottleneck that drives up costs and limits scalability. By streaming directly to object storage, you eliminate disk I/O entirely, turning your server into a stateless pass-through. That simple shift slashes infrastructure costs and unlocks true horizontal scaling.