Hierarchy
- Categories
- Systems
- Sources
- Thinking in Systems
The arrangement of a system into nested subsystems, where most interactions happen within a subsystem and far fewer cross between them. Hierarchy is how complex systems organize themselves and reduce the information any one part must handle.
Why it Matters
Hierarchy lets large systems function by keeping subsystems semi-autonomous, which limits how much any part must track and contains failures locally. It also evolves naturally, because stable intermediate forms assemble faster and more reliably than monolithic ones.
Signals
- Clusters with dense internal connections and sparse external ones.
- Subsystems that can largely operate on their own.
- A change that mostly stays inside one subsystem.
Benefits
Reduced information load, fault isolation, and the ability to grow without every part becoming coupled to every other part.
Risks
Subsystems optimizing for themselves at the expense of the whole (suboptimization), or central control so tight that subsystems lose the autonomy that made the hierarchy useful.
Tensions
Too much central control starves subsystem autonomy; too little coordination lets subsystems pursue local goals against the whole. Setting that balance is the core design problem of any hierarchy.
Examples
Organs within a body within an organism; modules within services within a platform.