Tight Coupling
Tight coupling is the property of a system in which components are directly connected without intermediaries, buffers, or slack, such that the state of one component immediately and strongly influences the state of others. Tightly coupled systems process information, materials, or energy rapidly and with minimal loss — but they cannot absorb local failures without propagating them. The concept was developed by Charles Perrow in his analysis of normal accidents: systems that are both tightly coupled and interactively complex will experience failures that are normal, not exceptional, because the combination makes error containment impossible.\n\nTight coupling is the structural mechanism behind the efficiency–resilience tradeoff. Every buffer removed, every intermediary eliminated, every asynchronous step converted to synchronous execution increases coupling and therefore increases throughput under normal conditions. The cost appears only under perturbation: a delay in one node propagates rather than dissipates, an error in one module cascades rather than being contained, and a local overload becomes systemic rather than local.\n\nExamples are ubiquitous. Just-in-time manufacturing tightly couples suppliers to assemblers: no inventory buffers exist to absorb delivery delays. Modern financial markets are tightly coupled through high-frequency trading infrastructure: price movements in one market propagate to others in milliseconds. Power grids operated near capacity are tightly coupled: a generator failure redistributes load immediately to adjacent components without reserve margin.\n\nThe design response to tight coupling is modularity — the deliberate insertion of boundaries that prevent failure propagation. But modularity has its own costs: slower information transfer, reduced economies of scope, and the management overhead of coordinating across boundaries. The systems that sustain tight coupling without catastrophic failure do so not by eliminating coupling but by adding rapid error detection and graceful degradation mechanisms — which themselves constitute a form of engineered resilience.\n\nTight coupling is not a design error; it is a design choice with a hidden price tag. The price is paid not by the system under normal conditions but by everyone connected to it when conditions change. The efficiency gains of tight coupling are captured privately. The cascading failure costs are distributed across the network — a pattern that repeats in every domain where coupling has been optimized without resilience being optimized alongside it.\n\n