Question
What goes wrong when you ignore that bottleneck cascades?
Quick Answer
Assuming that fixing the primary bottleneck will solve the system. You invest weeks addressing the most visible constraint, succeed, and expect throughput to leap to your target. When it barely improves, you conclude that the intervention failed or that bottleneck analysis does not work. Neither.
The most common reason fails: Assuming that fixing the primary bottleneck will solve the system. You invest weeks addressing the most visible constraint, succeed, and expect throughput to leap to your target. When it barely improves, you conclude that the intervention failed or that bottleneck analysis does not work. Neither is true. The intervention succeeded — it removed a real constraint. But the system had multiple constraints stacked behind the first, and you planned for one fix when the situation required a sequence. The failure is not in the method. It is in the mental model that imagines one obstacle between you and full throughput, when the reality is a chain of obstacles, each revealed only when the one before it is cleared.
The fix: Take the system you have been analyzing throughout this phase. Map every step from input to output. For each step, estimate its maximum throughput — the most units it could process per time period if nothing upstream were constraining it. Now mentally remove the current bottleneck. Which step has the next-lowest maximum throughput? And the one after that? Rank all steps from lowest to highest capacity. If the top three lowest-capacity steps are adjacent or in sequence, you have a probable cascade. Write out the cascade chain: 'If I fix [Step A], the next constraint will be [Step B] because its capacity is [X], and after that [Step C] because its capacity is [Y].' You now have a cascade map — a pre-mortem for your bottleneck intervention.
The underlying principle is straightforward: Sometimes fixing one bottleneck reveals that a downstream constraint was hidden.
Learn more in these lessons