I sistemi distribuiti (più computer che lavorano insieme attraverso una rete) presentano sfide significative che non esistono nei sistemi a macchina singola — inaffidabilità della rete, guasti parziali, consistenza, coordinamento e altro. Comprendere questi aspetti è essenziale per progettare sistemi su larga scala.
Perché è importante
Multiple machines communicating over a NETWORK introduce fundamental challenges:
→ the NETWORK is unreliable (latency, packet loss, partitions) and not instant
→ PARTIAL FAILURES → some parts fail while others work (vs all-or-nothing on one machine)
→ no shared memory/clock → coordination is hard
→ "the network is reliable" etc. are FALLACIES — distributed systems break these assumptions.
