惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
量子位
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
D
DataBreaches.Net
B
Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
H
Help Net Security
The Cloudflare Blog
U
Unit 42

SECURITY.COM

Sensitive Data Thrives in a Quiet Environment The DLP Network Discover Cluster Is Always Watching (So Your Team Doesn't Have To) 6 Use Cases Security Practitioners Can Tackle With XDR How To Take Prevention to the Web Layer The Cluster That Came Back: Disaster Recovery for High Speed Discovery AI-Ready PAM: When Your Identity Security Solution Talks Back 11 Reasons Native Telemetry Correlation Matters in XDR Symantec DSPM is Here To Deliver Deeper Data Insights Secure Open-Source AI Agents with the DLP You Have Now 4 Application Control Updates That Help Teams Move Faster 3 Ways to Defend Against LOTL Attacks Now Humble Brag: Symantec® Data Center Security Achieves Common Criteria Certification Tips to Harden Your Air Gapped Environments The Visibility Challenge Nobody Asked For Your DLP Incident Backlog Owes You Closure 5 Reasons Symantec® CBX Delivers Total Endpoint Visibility 8 XDR Questions From the Show Floor Locking Down the Server Data Security Is Having A Moment 5 Ways XDR Helps SOCs Act Faster 5 Ways To Keep AI in Check DLP Made Easier on the Teams Running It Web Traffic Visibility is the New Non-Negotiable The Agentic AI Tsunami is Here: Is Your Legacy IAM Sinking or Swimming? For Financial Services, a Wake-Up Call for Reclaiming IAM Control How Cloud-Managed DLP Lowers the Barrier to Entry As Identity Takes Control, Telecom Needs Repatriated IAM Capable of Keeping Up Post-Quantum Security Starts at the Edge The Public Sector Case for Repatriating IAM in the Age of AI The Data Sovereignty Paradox
Part 1: Why "Less Is More" in Symantec PAM Clustering
About the Author · 2026-09-19 · via SECURITY.COM

When designing high availability infrastructure, it is tempting to assume that bigger is always better. If a three node cluster is good, then a five, seven, or nine node primary site cluster must be twice as resilient, right?

In Symantec Privileged Access Manager (PAM), the opposite is true past a certain point. If your goal is maximum throughput, low latency, and fault tolerance, expanding your primary site past three nodes is a path toward diminishing returns. 

In short, keep your primary site at three nodes. Three is all high availability requires, and every node past that adds transaction latency without a resiliency gain to justify it. Deploy secondary sites for scale and disaster recovery instead. The rest of this post explains why.

The engine under the hood: Synchronous consensus

Within a primary site, PAM uses MySQL Group Replication to maintain identical database states across all member nodes. Changes are replicated synchronously, which means that every time a privileged account is checked out, a policy is updated, or a credential is rotated, a majority of the members must agree on that transaction before it commits. That majority is the quorum.

Here is how quorum math works in practice:

Why three nodes is the right number

Adding more nodes to a single primary site might sound like extra insurance, but every transaction waits for enough members to confirm it. Three members keep that to a single confirmation, since the member handling the change already counts toward quorum. Five members require two, and seven require three.

Each step up meaningfully increases the odds that a minor hypervisor delay, CPU spike, or packet retransmission affecting any single node delays one of those confirmations and stalls the transaction. 

PAM delivers high availability on three nodes, tolerating a complete node failure without losing quorum or interrupting operations. Three nodes also goes further than the number suggests. PAM was built for scale, and a single appliance handles significantly more concurrent privileged sessions than competing solutions.

Scaling the smart way: Asynchronous secondary sites

Symantec PAM gives you a dedicated path for scale and redundancy: secondary sites.

While primary site members replicate synchronously among themselves, replication from the primary site to secondary sites is asynchronous. The primary site commits the change locally first, then streams it to the secondary sites in the background, so nothing on the primary site ever waits on a remote data center.

Secondary site architecture provides a way to add capacity for user requests as your traffic increases, without adding nodes to the primary site and risking its performance.

This architectural split gives you the best of both worlds:

  1. Uncompromised primary speed. Your primary site stays small, so transactions commit with a single confirmation.
  2. True site-level resiliency. If your primary data center experiences a total outage, a secondary site holds a replicated copy of the database and can be promoted to take over the primary role.
  3. Scaling without downtime. Nodes can be added to or removed from secondary sites without stopping the cluster, so you can scale up over time without a maintenance window.
  4. Minimal WAN traffic. Each secondary site has a leader that receives the replication stream and distributes it locally, so only one copy crosses the WAN per site. The remaining nodes automatically fall back to the primary site if that leader goes offline.

Minimize latency, maximize availability 

When building or reviewing your Symantec PAM topology: keep your primary site lean at three nodes, and handle scale and disaster recovery through secondary sites.

By capping your primary site at three nodes you minimize database consensus latency while maintaining high availability. And by pairing it with secondary sites, you achieve enterprise grade resilience without sacrificing daily user experience.

Once your primary site is sized, the next design decision is your secondary sites: how many nodes belong at each site, and where they should go. Part 2 of this series will walk through both.

For more information