Hacker News new | ask | show | jobs
by jude- 1820 days ago
It's extremely hard to reason about the global emergent behavior of a complex system than the isolated behavior of a small component.
1 comments

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.