←back to thread

628 points kiyanwang | 1 comments | | HN request time: 0.204s | source
Show context
dockerd ◴[] No.43630691[source]
For those unable to open the link due to owner site being hit by Cloudflare limit, here's a link to web archive - https://web.archive.org/web/20250409082704/https://endler.de...
replies(2): >>43631005 #>>43631455 #
lapcat ◴[] No.43631455[source]
There's some irony, is there not, in presuming to be able to identify "the best programmers" when you've created a programming blog that completely falls down when it gets significant web traffic?
replies(8): >>43631537 #>>43631682 #>>43632057 #>>43632106 #>>43632144 #>>43632630 #>>43633134 #>>43636895 #
gorjusborg ◴[] No.43631682[source]
I think it is a fairly common trait of bad programmers to design a system based on completely unrealistic operating conditions (like multiple orders of magnitude of extra traffic).

Now that they've gotten the hug of death they'll probably plan for it next time.

replies(1): >>43633138 #
grayhatter ◴[] No.43633138[source]
How many ways are their to build a site that doesn't have these defects and risks?

Good engineers build things that eliminate failure modes, rather than just plan for "reasonable traffic". Short of DDoS, a simple blog shouldn't be able to die from reaching a rate limit. But given the site is dead, I can't tell, maybe it's not just a blog.

replies(1): >>43635611 #
gorjusborg ◴[] No.43635611[source]
> Good engineers build things that eliminate failure modes,

Yes, but not all failure modes, only the ones in scope for the goals of the system. From the outside you can't tell what the goals are.

There is no such thing as eliminating all failure modes, which was exactly the point I was making in my post above. The best you can do is define your goal clearly and design a system to meet the constraints defined by that goal. If goals change, you must redesign.

This is the core of engineering.

replies(1): >>43636500 #
1. grayhatter ◴[] No.43636500[source]
> Yes, but not all failure modes, only the ones in scope for the goals of the system. From the outside you can't tell what the goals are.

Is basic availability not a goal of a blog?

Phrased differently: given two systems, one that fails if a theoretically possible, but otherwise "unpredictable" number requests arrive. And one without that failure mode. Which is better?

> From the outside you can't tell what the goals are.

I either don't agree, not even a tiny bit, or I don't understand. Can you explain this differently?

> This is the core of engineering.

I'd say the core of engineering is making something that works. If you didn't anticipate something that most engineers would say is predictable, and that predictable thing instead of degrading service, completely takes the whole thing down, such that it doesn't work... that's a problem, no?