Skip to main content

The (non) sense of organization charts

Today while explaining my son how our heating system works, it brought me back to my earlier post about organization charts. Same as in heating system where you have a heating loop and a control loop, 2 loops exist in every organization. The first is formal and visible—it's drawn out in neat boxes and lines as your organizational chart, showing who reports to whom and where decisions get made. The second is informal and largely invisible—it's the actual pathways through which information, ideas, and real work flow to get things done.

The two flows of organizational systems

When we apply systems thinking to organizations, we can identify two critical flows that determine how effectively an organization functions:

Control flow represents the formal authority structure—who has decision-making power, who approves what, and how accountability flows up and down the hierarchy. This is what your org chart captures beautifully with its clean boxes and reporting lines.

Information flow represents how knowledge, data, feedback, and insights actually need to move through the organization to solve problems, serve customers, and create value. This flow rarely follows the neat hierarchical paths shown on org charts.

The fundamental challenge is that most organizations optimize for control flow while inadvertently constraining information flow. They create clear reporting structures but force critical information to take circuitous routes through multiple layers of management, creating bottlenecks, delays, and distortion.

The real-world impact

Consider a typical software company where a customer reports a critical bug. The information flow that would solve this problem fastest might look like:

 

But the control flow shown on the org chart might require:

 

Each additional step in this chain introduces delay, potential for miscommunication, and often dilution of the original problem's urgency and context.

The shadow networks

In healthy organizations, informal networks emerge to route around these structural impediments. The support representative develops a direct relationship with a developer who can quickly assess technical issues. The product manager maintains back-channel communications with key customers. Cross-functional teams form organically to tackle complex problems.

These shadow networks are often what make organizations actually work, despite their formal structures. They represent the organization's natural tendency to optimize for information flow even when the formal structure optimizes for control flow.

When control flow dominates

Organizations that rigidly enforce their hierarchical information paths often exhibit predictable symptoms:

  • Slow response times to customer issues or market changes
  • Repeated escalations of simple problems
  • "Telephone game" distortion where information changes as it passes through layers
  • Frustrated employees who know exactly who can help but can't reach them directly
  • Innovation that gets stuck in approval chains rather than rapid iteration cycles

The irony is that by trying to maintain tight control over information flow, these organizations often lose the very thing they're trying to achieve: effective oversight and accountability.

Designing for both flows

The most effective organizations recognize that you need both clear control structures and efficient information pathways. They maintain accountability and decision-making clarity while enabling information to flow along paths of least resistance and maximum value. If your organizational design forces critical information through unnecessary checkpoints and delays, you're essentially building slower reflexes into your system.

The goal isn't to eliminate hierarchy or control structures—these serve important functions in maintaining alignment, accountability, and strategic direction. The goal is to design organizations that excel at both control and information flow, recognizing that these are complementary rather than competing needs.

Moving forward

The next time you look at your organization chart, ask yourself: If information flowed exactly along these lines, how long would it take to solve your customers' most common problems? How many critical insights would get lost or delayed in translation? How much innovation would get stuck in approval bottlenecks?

Your org chart tells you how authority flows through your organization. But understanding how information actually needs to flow—and designing systems that enable rather than constrain that flow—might be the key to unlocking your organization's true potential.

Popular posts from this blog

Podman– Command execution failed with exit code 125

After updating WSL on one of the developer machines, Podman failed to work. When we took a look through Podman Desktop, we noticed that Podman had stopped running and returned the following error message: Error: Command execution failed with exit code 125 Here are the steps we tried to fix the issue: We started by running podman info to get some extra details on what could be wrong: >podman info OS: windows/amd64 provider: wsl version: 5.3.1 Cannot connect to Podman. Please verify your connection to the Linux system using `podman system connection list`, or try `podman machine init` and `podman machine start` to manage a new Linux VM Error: unable to connect to Podman socket: failed to connect: dial tcp 127.0.0.1:2655: connectex: No connection could be made because the target machine actively refused it. That makes sense as the podman VM was not running. Let’s check the VM: >podman machine list NAME         ...

Cache stampede: when our cache turned against us

While investigating some performance issues, we ran into an ASP.NET Core API that cached a fairly expensive aggregation query for 60 seconds. Under normal load, that was fine: one request rebuilds the cache, everyone else reads from it. Under peak load, dozens of requests would arrive in that same expiry window, all see a cache miss, and all fire the same expensive query in parallel. The database didn't like that. That was the moment when our caching layer stopped helping and started hurting. A burst of requests comes in at the same time, all miss the cache, and all go hammer the database or the downstream API at once. That's a cache stampede . The cache was supposed to protect our backend, and for a few hundred milliseconds it did the opposite. Why this happens IMemoryCache.GetOrCreate (and its async sibling) looks like it protects you, but it doesn't add any locking on its own. Look at the naive version: public async Task<Report> GetReportAsync(string key) ...

A complex system designed from scratch never works

A few years ago, I worked as an architect on a big mainframe rewrite. I still count it as one of my failures. Not because the technology was wrong, but because I couldn't convince the management team to simplify the approach. Years later, the organization is still struggling to get the new system up and running. I left the project at the time, because I couldn't put my name behind an approach that would take very long and cost a lot of money without a working system to show for it along the way. Gall’s Law That memory keeps coming back to me, because it's a textbook case of Gall's Law playing out in real life. Gall's Law , from John Gall's Systemantics , states it plainly: A complex system that works is invariably found to have evolved from a simple system that worked. A complex system designed from scratch never works, and it cannot be patched to make it work. You have to start over with a simple system that works. What does that mean in practice,...