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

推荐订阅源

博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
The Cloudflare Blog
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
F
Fortinet All Blogs
J
Java Code Geeks
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
爱范儿
爱范儿
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog RSS Feed
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
小众软件
小众软件
Y
Y Combinator Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Vercel News
Vercel News
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

SECURITY.COM

Sensitive Data Thrives in a Quiet Environment 13 Cybersecurity Stats You Should Know in 2026 The Detection Gap: MITRE ATT&CK T1047 Who Will Win the AI Arms Race? Node.js: Old Technique Makes a Comeback 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 Detection Gap: MITRE ATT&CK T1003.001 What Happens When Two Iconic Brands Unite? The Cluster That Came Back: Disaster Recovery for High Speed Discovery No Apologies for Symantec CBX Jewelbug: APT Group Runs Espionage and Crypto Fraud Operations Side by Side Frontier AI Just Made the Race to Patch Vulns That Much Harder You Can’t Patch Your Way Out of AI AI-Ready PAM: When Your Identity Security Solution Talks Back 11 Reasons Native Telemetry Correlation Matters in XDR The Detection Gap: MITRE ATT&CK T1053.005 Things You Won’t Want to Miss at Black Hat USA 2026 Symantec DSPM is Here To Deliver Deeper Data Insights Broadcom Named a Quadruple Leader in KuppingerCole's Zero Trust Leadership Compass Secure Open-Source AI Agents with the DLP You Have Now Cyber Legends: The Connector 4 Application Control Updates That Help Teams Move Faster 3 Ways to Defend Against LOTL Attacks Now Spirals: New Stealthy Ransomware Deployed Against Asian IT Company Daxin Returns: Stealthy Malware Resurfaces in Taiwan Alongside a New Backdoor The Detection Gap: MITRE ATT&CK T1140 and T1105 Humble Brag: Symantec® Data Center Security Achieves Common Criteria Certification GodDamn Ransomware: Latest Beast Rebrand Uses Malicious Driver to Disable Defenses
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