Papers
Topics
Authors
Recent
Assistant
AI Research Assistant
Well-researched responses based on relevant abstracts and paper content.
Custom Instructions Pro
Preferences or requirements that you'd like Emergent Mind to consider when generating responses.
Gemini 2.5 Flash
Gemini 2.5 Flash 65 tok/s
Gemini 2.5 Pro 51 tok/s Pro
GPT-5 Medium 32 tok/s Pro
GPT-5 High 29 tok/s Pro
GPT-4o 80 tok/s Pro
Kimi K2 182 tok/s Pro
GPT OSS 120B 453 tok/s Pro
Claude Sonnet 4.5 34 tok/s Pro
2000 character limit reached

Hybrid Sharding for Hedera

Updated 30 September 2025
  • The paper introduces a hybrid sharding model that partitions Hedera's Hashgraph into local committees and a global coordinator, dynamically reconfiguring to improve scalability and security.
  • It leverages both full and partial sharding techniques to significantly reduce storage and communication overhead while maintaining consensus through ABFT properties.
  • The architecture enables parallel transaction processing and robust fault tolerance via dynamic committee reallocation and efficient cross-shard coordination.

A hybrid sharding solution for Hedera refers to an architecture that integrates multiple sharding techniques—drawing on advances from distributed systems, Byzantine fault tolerance, and permissioned/public blockchain design—specifically tailored to augment Hedera Hashgraph’s consensus and operational framework. The approach aims to partition transaction processing and state management across a dynamically reconfigurable set of local committees (“shards”) while preserving a global consensus layer, thereby improving scalability, throughput, fault tolerance, and resource efficiency (Wang et al., 23 Sep 2025).

1. Sharding Principles and Blockchain Context

Sharding in blockchains involves partitioning the network into multiple independent subsets, or “shards,” each responsible for validating a distinct set of transactions and maintaining a part of the blockchain state. This decomposition enables:

  • Parallel transaction processing: Multiple shards handle disjoint subsets of the workload, increasing throughput.
  • Reduced per-node storage and communication requirements: Each node maintains only a slice of the global ledger and communicates primarily within its shard.
  • Decentralization and security preservation: Proper committee assignment mechanisms ensure no single adversary can control a shard or the network (Wang et al., 23 Sep 2025, Dang et al., 2018).

By distributing transaction validation and storage across shards, the blockchain system can scale horizontally while reconciling the scalability trilemma—achieving decentralization, security, and high throughput.

2. Hedera Platform Innovations

Hedera Hashgraph distinguishes itself through:

  • Gossip about Gossip protocol: Each node transmits not only new transactions but also metadata regarding previous gossip interactions (hash pointers), constructing a directed acyclic graph (DAG) of event histories. This enables fast and redundant dissemination of state and transactions (Wang et al., 23 Sep 2025).
  • Asynchronous Byzantine Fault Tolerance (ABFT): Hedera’s consensus algorithm provides ABFT by tolerating up to 1/3 malicious nodes with deterministic finality. Virtual voting within the DAG avoids the need for conventional leader-based BFT rounds (Wang et al., 23 Sep 2025).

These underpinning features make Hedera a favorable substrate for advanced, secure, and scalable sharding solutions.

3. Survey of Sharding Methodologies

Hybrid sharding for Hedera synthesizes lessons from several academic and industrial sharding methodologies:

Sharding Type Key Approaches Trade-offs
Partial Sharding Elastico, RepChain State not sharded—less storage/network gain but limited cross-shard scaling; relies on all nodes holding ledger (Wang et al., 23 Sep 2025)
Full Sharding OmniLedger, RapidChain State and transaction sharding, supports atomic cross-shard transactions; higher complexity in transaction routing and security (Wang et al., 23 Sep 2025)
Industrial Approaches Ethereum 2.0 Danksharding, BNB Smart Chain, Zilliqa Separates data availability from consensus; mixed levels of decentralization; practical scalability advances (Wang et al., 23 Sep 2025)

“Partial sharding” methods improve parallelism but can be constrained by communication overhead and coordination requirements, whereas “full sharding” methods offer more significant scalability by fully partitioning both workload and state. Industrial solutions tend to integrate modular sharding at execution, consensus, or data-availability layers depending on legacy compatibility and operational constraints.

4. Two-Layer Hybrid Sharding Solution Architecture

The proposed solution for Hedera is built around a two-level committee structure:

(A) Local Committees (Shards)

  • Structure: Nodes are randomly assigned into “Local Committees”; each maintains only its allocated segment (“slice”) of the global Hashgraph.
  • Operation: Each committee independently validates and stores a subset of the global transaction/event stream, thereby substantially reducing per-node communication and storage overhead.
  • Random Assignment: Utilizes randomized, periodic reconfiguration (using consensus timestamps as random seeds) to thwart adversarial concentration in any shard.

(B) Global Committee

  • Coordination Layer: One node per Local Committee serves as a coordinator; the set of all coordinators forms the Global Committee.
  • Responsibilities:
    • Data Redundancy: Stores checkpoints (summaries) of local Hashgraphs, guaranteeing global state resilience.
    • Cross-Shard Transaction Processing: Receives cross-shard transactions from local coordinators, ensures total ordering, and coordinates transaction posting with the receiving committee.

(C) Dynamic Reconfiguration

  • Nodes joining or leaving initiate random (consensus timestamp–based) committee reallocation.
  • Committee reorganization is triggered upon significant churn, maintaining robust randomness against Sybil or join-leave attacks and ensuring unpredictability in committee assignment (Wang et al., 23 Sep 2025).

A schematic diagram (“Design Overview,” Fig. 2 in (Wang et al., 23 Sep 2025)) explicitly demonstrates this two-layer structure and the information flow for transaction ordering and cross-shard coordination.

5. Storage and Communication Overhead Reduction

Sharding dramatically decreases the per-node overhead as follows:

Communication Cost:

Cnon-sharded=(n1)TthroughputEC_{\text{non-sharded}} = (n-1) \cdot T_{\text{throughput}} \cdot E

Csharded=(ns1)TthroughputEC_{\text{sharded}} = \left( \frac{n}{s} - 1 \right) \cdot T_{\text{throughput}} \cdot E

where nn is the total number of nodes, ss is the number of shards (Local Committees), TthroughputT_{\text{throughput}} is the network throughput, and EE is the per-event message size. The dominant factor—total network size—is reduced by a factor of $1/s$ for each committee.

Storage Cost:

If SS is the aggregate ledger storage requirement, each node after sharding holds S/s\approx S/s as nodes maintain only their Local Committee’s state.

This suggests substantial scaling gains, with improved throughput, lower node resource requirements, and better sustainability for network growth and decentralization.

6. Cross-Shard Transaction and Security Considerations

  • Cross-Shard Transactions: Coordinated by the Global Committee. When a transaction touches multiple shards, the origin committee forwards a marker to its coordinator, which then synchronizes with the destination committee to insert and validate the transaction into that committee’s view (Wang et al., 23 Sep 2025, Dang et al., 2018).
  • Security: Preserved by random assignment, globally coordinated reconfiguration, and minimum honest majorities in both local and global committees. Hedera’s Hashgraph ABFT properties remain intact for each committee segment if the classical f<1/3f < 1/3 bound is respected.

The committee-based model with dynamic assignment ensures that no persistent adversarial majority can form, and that global state redundancy prevents loss in the event of local failures.

7. Scalability, Fault Tolerance, and Feasibility

  • Parallelism: Transaction validation, consensus, and storage are all parallelized at the committee level, providing horizontal scaling.
  • Fault Tolerance: The dual committee structure (local + global) means failures or compromises in a single shard or committee can be recovered via global redundancy and committee reconfiguration.
  • Dynamic Adaptivity: The ability to add or remove committees and reorganize membership as the network changes—using the proposed randomness and reconfiguration workflow—provides resilience against later-stage adversarial strategies (e.g., join-leave or Sybil attacks).

This layered approach is feasible to implement within Hedera’s DAG-ledger and gossip-based protocol, and experimental analysis in (Wang et al., 23 Sep 2025) demonstrates significant scalability and resource-efficiency advantages over monolithic consensus.

References to Key Mechanisms and Metrics

Mechanism Notation or Formula Source
Committee communication cost C=((n/s)1)TthroughputEC = ((n/s) - 1) \cdot T_{\text{throughput}} \cdot E (Wang et al., 23 Sep 2025)
Storage per node after sharding S/sS/s (Wang et al., 23 Sep 2025)
Security bound per committee f<n/3f < n/3 (Wang et al., 23 Sep 2025)

Diagrams like “Design Overview” (Fig. 2) and “Cross-Shard Transaction Processing” (Fig. 3) in (Wang et al., 23 Sep 2025) visually capture committee composition and inter-shard transaction logic.

Summary

The hybrid sharding solution for Hedera partitions the network into Local Committees, each operating its own slice of the Hashgraph, and coordinates cross-shard transactions via a Global Committee composed of local coordinators. Storage and communication costs are significantly reduced by per-committee resource partitioning. Dynamic reconfiguration ensures committee membership remains secure and resilient against adversarial actions. This design leverages Hedera’s DAG-based and ABFT consensus mechanisms, offering linear improvement in scalability, robust fault tolerance, and practicality for enterprise-grade and large-scale blockchain applications (Wang et al., 23 Sep 2025).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (2)
Forward Email Streamline Icon: https://streamlinehq.com

Follow Topic

Get notified by email when new papers are published related to Hybrid Sharding Solution for Hedera.

Don't miss out on important new AI/ML research

See which papers are being discussed right now on X, Reddit, and more:

“Emergent Mind helps me see which AI papers have caught fire online.”

Philip

Philip

Creator, AI Explained on YouTube