Federated Hub-and-Spoke Topology is a centralized federated learning architecture where a single, trusted parameter server acts as the hub, orchestrating all communication with isolated client nodes, or spokes. In this configuration, raw data never leaves the local spokes; instead, clients independently train a model on their private data and send only encrypted model updates—such as gradients or weights—to the central hub for secure aggregation.
Glossary
Federated Hub-and-Spoke Topology

What is Federated Hub-and-Spoke Topology?
A star-like network architecture where a central aggregation server coordinates all communication and model updates with peripheral client nodes.
The hub computes a new global model by mathematically fusing the received updates, typically using algorithms like Federated Averaging, and then redistributes the improved model back to all spokes. This topology simplifies network management and is the dominant pattern in cross-silo healthcare collaborations, where a lead research institution often operates the hub to coordinate training across multiple hospitals.
Key Characteristics of Hub-and-Spoke Topology
The hub-and-spoke topology is the most common architectural pattern in cross-silo federated learning, where a central aggregation server orchestrates model updates from multiple institutional clients. Its centralized coordination simplifies governance, debugging, and secure aggregation at the cost of a single communication bottleneck.
Centralized Orchestration Model
A single parameter server acts as the hub, managing the entire training lifecycle. It selects participating clients, distributes the initial global model, and waits for updates. This star topology eliminates the need for complex peer-to-peer discovery protocols, making it the default choice for cross-silo healthcare networks where a trusted consortium lead can host the aggregator. The server never accesses raw patient data, only encrypted or masked model updates.
Synchronous Communication Protocol
Most hub-and-spoke deployments use synchronous federated training. The central server waits to receive model updates from all selected clients in a round before computing the next global model via Federated Averaging (FedAvg). This ensures deterministic, reproducible aggregation but introduces a straggler problem: the entire round is delayed by the slowest participating hospital. Mitigation strategies include setting strict timeout windows or using federated client selection to exclude underperforming nodes.
Secure Aggregation Gateway
The hub functions as a cryptographic aggregator, not a data lake. Using federated secure aggregation protocols, the server computes the sum of client model updates without being able to inspect any individual hospital's contribution. This is achieved through techniques like secure multi-party computation (SMPC) or homomorphic encryption, ensuring that even if the central server is compromised, no single institution's gradient updates—which could leak patient information via model inversion attacks—are exposed.
Single Point of Governance
The hub provides a natural locus for federated model governance. All versioning, audit trails, and access control policies are enforced at the central server. This simplifies compliance with HIPAA and GDPR because the consortium can implement a unified federated model registry that tracks model lineage, participant contributions, and training metadata. In a federated consortium topology, the hub is typically operated by a neutral third party or lead research institution under a shared legal agreement.
Communication Bottleneck Risk
The primary architectural weakness is the single point of failure and bandwidth concentration at the hub. As the number of spokes scales, the server must handle O(n) simultaneous connections. In cross-device federated learning with millions of clients, this becomes infeasible, but in cross-silo healthcare networks with 10-50 institutional nodes, it remains manageable. Hierarchical federated learning addresses this by introducing intermediate edge aggregators, effectively creating a tree of hub-and-spoke sub-networks.
Client Selection and Dropout Handling
The hub actively manages federated client selection, strategically choosing a subset of available hospitals for each round to maximize convergence speed. It must also handle federated client dropout, where a selected node fails to return updates due to network issues or local compute constraints. The server can either proceed with a reduced quorum, apply federated straggler mitigation techniques like gradient caching, or reschedule the dropped client for a future round without corrupting the global model state.
Frequently Asked Questions
A star-like network architecture where a central aggregation server coordinates all communication and model updates with peripheral client nodes.
A Federated Hub-and-Spoke Topology is a centralized network architecture where a single, trusted aggregation server (the hub) coordinates all communication with multiple client nodes (the spokes). In each federated communication round, the hub distributes the current global model to selected spokes, which perform local training on their private data. The spokes then transmit only their model updates—gradients or weights—back to the hub, never exposing raw data. The hub executes a federated aggregation algorithm, such as Federated Averaging (FedAvg), to compute a new global model. This topology is the most common implementation pattern in cross-silo federated learning for healthcare, where a consortium of hospitals connects to a central orchestrator managed by a neutral third party or lead institution. Its primary advantage is operational simplicity: the hub maintains a single source of truth for the global model, enforces versioning, and manages federated client selection. However, the hub represents a single point of failure and a potential communication bottleneck, requiring robust federated straggler mitigation and security hardening against model poisoning attacks.
Hub-and-Spoke vs. Other Federated Topologies
Structural comparison of the centralized hub-and-spoke topology against decentralized and hierarchical alternatives for multi-institutional healthcare networks.
| Feature | Hub-and-Spoke | Hierarchical FL | Decentralized FL |
|---|---|---|---|
Coordination Model | Single central aggregation server | Multi-tier edge aggregators + central server | Peer-to-peer with no central coordinator |
Single Point of Failure | |||
Communication Complexity | O(n) per round | O(n/k) per edge, O(k) to central | O(n²) in fully connected mesh |
Latency Profile | Bottlenecked by slowest client | Reduced via edge aggregation | Variable, no global synchronization |
Governance Simplicity | High — single authority controls aggregation | Moderate — tiered policy enforcement | Low — requires distributed consensus |
Regulatory Audit Trail | Centralized logging at server | Distributed logs at each tier | Blockchain or gossip-based audit |
Scalability Ceiling | Limited by server bandwidth | Scales to thousands of nodes | Theoretically unbounded |
Byzantine Fault Tolerance | Requires explicit server-side defenses | Partial at edge, full at central | Inherent via consensus protocols |
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Related Terms
Understanding the Federated Hub-and-Spoke Topology requires familiarity with the aggregation, communication, and security protocols that govern the central server's interaction with peripheral nodes.
Federated Parameter Server
The centralized infrastructure component that physically stores the global model and executes the aggregation logic. In a hub-and-spoke topology, this server is the single hub that receives model updates (gradients or weights) from all spoke clients. It maintains the master state, applies the Federated Averaging (FedAvg) algorithm, and redistributes the updated global model. This component is a critical bottleneck and a single point of failure, requiring high availability and robust security hardening.
Federated Synchronous Training
The default communication protocol for hub-and-spoke architectures. The central server selects a cohort of clients, distributes the current global model, and waits for all selected clients to return their updates before computing the next iteration. This ensures deterministic, reproducible aggregation but introduces the straggler problem, where a single slow or unresponsive hospital can delay the entire training round, wasting compute resources and wall-clock time.
Federated Secure Aggregation
A cryptographic protocol that mathematically ensures the central hub can only compute the sum of client model updates without ever inspecting any individual hospital's contribution. This is critical for healthcare because it prevents the hub operator from inferring patient-level information from a single institution's gradient update. Techniques like Secure Multi-Party Computation (SMPC) or homomorphic encryption are layered on top of the star topology to provide defense-in-depth against an honest-but-curious server.
Federated Client Selection
The strategic scheduling algorithm that determines which spoke nodes participate in each communication round. In a hub-and-spoke topology with hundreds of clinics, selecting a subset is necessary to manage bandwidth and convergence. Strategies include:
- Random selection: Statistically unbiased but may pick stragglers.
- Greedy selection: Prioritizes clients with the most data or lowest latency.
- Multi-armed bandit: Dynamically balances exploration of new clients with exploitation of fast, high-quality nodes.
Federated Straggler Mitigation
Techniques to prevent slow peripheral nodes from paralyzing the central hub in synchronous rounds. Common approaches include setting a hard timeout (dropping clients that don't respond within t seconds) or using asynchronous fallback where the server updates the global model immediately upon receiving a predefined quorum of updates. For healthcare deployments, straggler mitigation must be balanced against introducing bias by systematically excluding smaller, resource-constrained rural clinics.
Hierarchical Federated Learning
An evolution of the flat hub-and-spoke model that introduces intermediate edge aggregators between the central server and end clients. For example, a regional hospital may act as a sub-aggregator for local clinics before forwarding a combined update to the national hub. This reduces the communication load on the central server, mitigates latency for geographically distributed nodes, and aligns naturally with healthcare administrative hierarchies like regional health information exchanges (HIEs).

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us