Hacker News new | ask | show | jobs
by worldsayshi 1820 days ago
I agree. It kind of amazes me though there is so much room for obscurity. I would expect standardisation to have dealt with this a long time ago. Why are problems not more isolated and manageable in general?
1 comments

It's extremely hard to reason about the global emergent behavior of a complex system than the isolated behavior of a small component.
I don't think it's a function of complexity per se, but determinism. This is why Haskellers love the IO monad. Used well, it lets you quarantine IO to a thin top-level layer, below which all functions are pure and easy to unit test.
Distributed systems are anything but deterministic.