Sistemas distribuidos (múltiples computadoras trabajando juntas a través de una red) presentan desafíos significativos que no existen en sistemas de una sola máquina — confiabilidad de red, fallos parciales, consistencia, coordinación, y más. Entender estos es esencial para diseñar sistemas a escala.
Por qué es 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.
