|

Two Nodes Can Preserve Availability. They Can’t Preserve N+1 Capacity.

9 MIN READ
ARCHITECT'S BRIEFExecutive summary for infrastructure architects
Field Notes — Engineering Notes from the Complexity Gap | Rack2Cloud

Two-node edge deployment no longer means what it meant two years ago. Red Hat now has two production-grade ways to run an OpenShift edge cluster on two servers instead of three, and both address the failure-coordination problem through different mechanisms. TNA preserves a third etcd vote through an arbiter; TNF uses hardware fencing to isolate a failed node. Neither mechanism changes what happens to the workload once one of the two workload-bearing servers is gone.

two-node edge deployment — TNA arbiter versus TNF fencing architecture comparison
Two ways to build a two-node edge cluster — arbiter versus fencing — and what each one keeps.

The Economics Behind Every Two-Node Edge Deployment

Edge infrastructure has never been a smaller version of datacenter infrastructure — it’s a different cost equation entirely. A third full-sized server at a retail site, a manufacturing floor, or a remote clinic doesn’t just cost the hardware. It costs the power circuit, the rack space, the shipping, and the truck roll every time it needs hands-on maintenance. Multiply that by a few hundred sites and the third node stops being an engineering decision and starts being a line item somebody has to defend.

That’s the pressure Red Hat’s newer two-node topologies are responding to, and it’s a legitimate response — the mechanics of two-node quorum are well understood at this point, and the industry has stopped pretending a third server is the only way to keep a cluster safe. But there’s a distinction worth being precise about before going further: removing the third full-sized server does not automatically remove high availability. It removes one full unit of failure capacity. Those are two different guarantees, and the rest of this piece is about the gap between them — inside the broader discipline of virtualization architecture, where hypervisor and control-plane decisions carry exactly this kind of five-year consequence.

Red Hat Has Two Ways to Build a Two-Node Edge

Red Hat’s own documentation splits this into two distinct architectures, and conflating them produces the wrong analysis.

01 — TWO-NODE WITH ARBITER (TNA)

Two full-sized nodes carry every workload. A lightweight third participant — the arbiter — holds only the third etcd vote needed for quorum. It runs no workloads and no control-plane components of its own. Red Hat positions TNA as preserving the same HA characteristics as a standard three-node cluster, and GA’d it with OpenShift 4.20. The third node’s coordination role survives; its compute role doesn’t.

02 — TWO-NODE WITH FENCING (TNF)

No arbiter, no third participant of any kind — genuinely two servers. Pacemaker and Corosync use BMC-based hardware fencing to isolate a failed or unresponsive node so the survivor can continue without split-brain risk. Both nodes run workloads directly; there’s no separate compute tier to fall back on. TNF reached general availability with OpenShift 4.22 in July 2026, two releases after TNA’s 4.20 GA introduction.

Neither approach changes the arithmetic of losing one of the two workload-bearing nodes. TNA replaces the third server’s coordination role with a lightweight arbiter; TNF replaces it with fencing. In both cases, the production workload starts with two places to run — and after one node fails, only one remains.

That distinction matters most inside the virtualization control plane itself, where cluster coordination and scheduling authority decide what “the cluster is up” actually means once a node is gone.

availability preserved versus failure capacity lost after one node fails
Quorum survives. Capacity doesn’t — unless it was sized for the failure.

The Guarantee You Preserved Isn’t the Guarantee You Lost

Condition 3-node (N+1 design) 2-node (TNA or TNF)
Normal operation Workload spread across 3 nodes Workload spread across 2 nodes
One node fails 2 workload-bearing nodes remain 1 workload-bearing node remains
Service continuity Designed to remain available if N+1 capacity is sufficient Designed to continue operating in a degraded state
Failure capacity Preserved — if the surviving pair was actually sized for it Not preserved — one node absorbs both

That last row is the whole argument, but it needs one caveat before it’s fair: N+1 isn’t a node count, it’s a design condition. A three-node cluster running hot enough that two surviving nodes still can’t carry the full workload never had real N+1 capacity either — the third node just made the shortfall less obvious. What a two-node topology does is remove the place where that shortfall used to hide. There’s no longer a second surviving node to quietly absorb the difference between what you provisioned and what you actually need.

TNF’s own documentation is explicit about this: after one node is fenced, the surviving node keeps the cluster running, but the cluster has lost HA redundancy and operates in a degraded state until the second node returns. The availability mechanism can work exactly as designed while the capacity model fails exactly as designed.

This is exactly the gap CPU Ready and CPU Wait metrics expose at the scheduler layer — a dashboard that reads “healthy” while the thing that actually determines performance sits somewhere the dashboard doesn’t look. Quorum status is the same kind of metric. It tells you the cluster is up. It says nothing about what “up” costs the surviving node.

The Capacity Problem Appears After the Failure, Not During Deployment

Split the timeline into three states and the mistake becomes obvious.

Before failure, the two nodes’ aggregate capacity looks fine on paper — CPU, memory, and storage summed across both boxes, comfortably above what the workload needs. During failure, that aggregate number stops mattering. The surviving node doesn’t inherit half the failed node’s workload — it inherits all of it, on top of what it was already carrying. After recovery, the architecture returns to its steady state, but the question that actually determined whether the incident was survivable already happened during the interval in between.

TWO CONVERSATIONS, TWO DIFFERENT QUESTIONS

  • The procurement conversation: “We’re saving one full server at every edge site.”
  • The failure conversation: “One server now has to absorb everything the other one was running.”
procurement conversation versus failure conversation in two-node edge deployment
Two different conversations, answering two different questions.

That’s not a hypothetical. Red Hat’s own TNA guidance recommends sizing each workload node at no more than roughly 50% utilization if the surviving node needs to absorb the full workload with zero performance degradation after a failure. Don’t over-index on that specific number — utilization isn’t a universal capacity unit, and the right ceiling depends on the workload’s actual resource profile. But the shape of the recommendation is the point: two nodes running at 50% isn’t wasted capacity. In an N-1 design, that apparent headroom is frequently the exact capacity you purchased for the failure you’re hoping never happens — the same aggregate-versus-usable capacity gap that shows up anywhere utilization and contention get treated as the same number.

The procurement conversation and the failure conversation are answering different questions, and an architecture review that only asks the first one is scoring the wrong exam.

The Mature Question Isn’t “Can It Stay Up?”

TNA has a longer production history than TNF — worth knowing if you’re choosing which mechanism to trust as part of your failure boundary, but it’s a secondary question next to the one that actually matters. The immature question is whether the platform remains available after a node is lost. Red Hat has already answered that convincingly for both topologies. The mature question is what the surviving infrastructure is expected to carry once it does — and that answer isn’t in the release notes. It’s in your own workload’s resource profile, sized against one node instead of two.

Getting that answer right is also where the decision stops being “which topology is cheaper” and starts being a governance question: what happens to that failure-capacity envelope across the platform’s lifecycle — through upgrades, patches, and the licensing and cost pressures that tend to erode a capacity margin nobody’s actively watching. A margin that was correctly sized at deployment doesn’t stay sized on its own.

The same discipline applies during planned events, not just unplanned ones — rolling maintenance on a hyperconverged platform already means deliberately operating at N-1 for the duration of the window. A two-node cluster doesn’t get a maintenance exemption from that arithmetic; it just means the “planned N-1” and the “unplanned N-1” are now the same operating condition, not two different ones.

The Architecture Review Question

QuestionWhat the answer must establish
What happens when one workload node disappears?Actual surviving workload, not aggregate capacity
What performance degradation is acceptable?An explicit, pre-agreed threshold — not a discovery made during the incident
How long can the cluster operate degraded?A defined recovery window and operational consequence — Red Hat treats degraded operation as temporary, not a steady state
What restores the failure-capacity margin?The node-replacement or recovery process, and how long it takes

That isn’t an abstract risk: while TNF is degraded, Red Hat disables cluster upgrades, etcd CA rotation, and fencing of the surviving node, and explicitly treats degraded operation as temporary. “How long can it stay degraded?” isn’t a theoretical question — it’s a documented operational constraint.

An architecture review that approves “two nodes” as an availability statement has approved the easy half of the decision. The harder half — and the one worth putting in the sign-off — is this: are you buying two-node availability, or are you claiming two-node resilience? Red Hat’s own documentation is honest about which one TNA and TNF actually deliver. The gap only opens when nobody reads past the availability claim.

Download: Two Nodes Can Preserve Availability Carousel
TNA vs. TNF, the four-row availability-vs-capacity table, and the architecture-review question — six slides you can pull into an actual review.
PDF · 6 SLIDES
[↓] Download Carousel →

Architect’s Verdict

Red Hat didn’t remove the third node’s job. It decomposed it. TNA keeps the coordination function alive in a component that costs almost nothing to run; TNF removes that component entirely and replaces its function with node isolation. What neither architecture restores is a third full-sized workload node standing by after a failure.

That’s not a criticism of either topology — both are honest engineering responses to a real cost problem, and both keep the promise they actually make. The failure is downstream of the product, in the architecture review that treats “the cluster stayed up” as the whole answer. Availability and failure capacity have always been separate properties. A three-node cluster just made it easy to forget that, because the arithmetic usually worked out even when nobody checked.

Two-node edge deployment removes that margin for error. Approve the failure mechanism you’re comfortable with — arbiter or fencing — and then size the surviving node for the day it’s the only one left.

Additional Resources

>_ Internal Resource
Virtualization Architecture
the pillar hub covering hypervisor strategy, control-plane authority, and platform decision frameworks this post’s TNA/TNF distinction sits inside
>_ Internal Resource
Virtualization Control Plane Architecture
the learning-path stage covering cluster coordination and scheduling authority that TNA and TNF are both built on top of
>_ External Reference
Create an Efficient Two-Node Edge Infrastructure with Red Hat OpenShift
Red Hat’s own TNA architecture explanation, including the capacity-planning sensitivity note this post builds on
>_ External Reference
OpenShift Container Platform 4.22 Release Notes — Two-Node Fencing General Availability
Red Hat’s own 4.22 release notes confirming TNF’s move from Technology Preview to General Availability, the fact this post’s maturity discussion is built on
>_ Internal Resource
The 2-Node Trap: Why Your Proxmox “HA” Will Fail When You Need It Most
the quorum mechanics behind two-node clusters in detail; this post picks up where that one stops, at the capacity question quorum survival doesn’t answer
>_ Internal Resource
CPU Ready vs. CPU Wait: Why Your Cluster Looks Fine but Feels Slow
the same “healthy signal, hidden capacity deficit” pattern at the scheduler layer instead of the node-topology layer
>_ Internal Resource
Resource Pooling Physics: CPU Wait Time and Memory Ballooning
why utilization and contention are different numbers, and what happens when a capacity review only checks the first one
>_ Internal Resource
Upgrade Physics: Designing for Rolling Maintenance Without Stopping Production
the same N-1 operating condition encountered deliberately, during planned maintenance rather than an unplanned failure
>_ Internal Resource
Virtualization Deterministic Operations
how lifecycle events and cost pressure interact with control-plane authority and failure-domain topology over the platform’s operating life

Editorial Integrity & Security Protocol

This technical deep-dive adheres to the Rack2Cloud Deterministic Integrity Standard. All benchmarks and security audits are derived from zero-trust validation protocols within our isolated lab environments. No vendor influence.

Last Validated: September 2026   |   Status: Production Verified
R.M. - Senior Technical Solutions Architect
About The Architect

R.M.

Senior Solutions Architect with 25+ years of experience in HCI, cloud strategy, and data resilience. As the lead behind Rack2Cloud, I focus on lab-verified guidance for complex enterprise transitions. View Credentials →

The Dispatch — Architecture Playbooks

Get the Playbooks Vendors Won’t Publish

Field-tested blueprints for migration, HCI, sovereign infrastructure, and AI architecture. Real failure-mode analysis. No marketing filler. Delivered weekly.

Select your infrastructure paths. Receive field-tested blueprints direct to your inbox.

  • > Virtualization & Migration Physics
  • > Cloud Strategy & Egress Math
  • > Data Protection & RTO Reality
  • > AI Infrastructure & GPU Fabric
[+] Select My Playbooks

Zero spam. Includes The Dispatch weekly drop.

Need Architectural Guidance?

Unbiased infrastructure audit for your migration, cloud strategy, or HCI transition.

>_ Request Triage Session

>_Related Posts