tezvyn:

N+1 Redundancy: One Spare for the Whole System

AI-drafted, machine-checkedSource: Wikipedia: N+1 redundancyintermediate

N+1 redundancy is like having one spare tire for your whole car. You have N active components and one shared, passive backup. It's used in server racks or power supplies for high availability without doubling costs.

WHY IT EXISTS Systems need to stay online even when parts fail, but duplicating every single component (a model called N+N or 2N) can be prohibitively expensive. N+1 redundancy offers a cost-effective compromise between full redundancy and no redundancy, providing resilience without doubling the hardware budget.

THE MENTAL MODEL Think of a data center with 10 server racks that each require a power supply. Instead of buying 20 power supplies (10 active, 10 backups), you buy 11. Ten are in use (N=10), and one sits as a shared, standby spare (+1). If any of the 10 active units fail, the system automatically switches the load to the one spare.

HOW IT WORKS A system requires N components to operate at full capacity. An additional identical component, the "+1", is included but remains passive or on standby. Monitoring systems detect the failure of one of the N active components. A controller then automatically fails over, switching the workload from the failed component to the standby one. This keeps the system operational, though it now runs with no remaining redundancy (N+0) until the failed unit is repaired or replaced.

WHEN TO USE IT Use N+1 when you need high availability but are sensitive to cost, and the components are homogenous (the spare can replace any of the active units). It's ideal for infrastructure like power distribution units (PDUs) in a rack, data center cooling systems, and nodes in a compute cluster.

WHEN NOT TO USE IT Avoid N+1 for systems where even a momentary degradation during failover is unacceptable, or where the risk of a second failure during the repair window is too high. Mission-critical systems that demand the highest possible uptime often require more expensive N+N (fully mirrored) or multi-region redundancy. It is also ineffective for heterogeneous components that are not interchangeable.

ONE CANONICAL EXAMPLE A server farm needs 5 power supplies to run (N=5). The design includes a 6th identical supply (the +1) connected to the same power bus. When one of the 5 active supplies fails, the 6th unit instantly takes over its load, preventing server downtime. The system sends an alert, and an operator can then replace the failed unit, restoring the N+1 redundancy.

Read the original → en.wikipedia.org

Get five bites like this every day.

Tezvyn delivers a daily feed of 60-second tech bites with quizzes to lock in what you learn.