distributed-topic-tracker 0.3.2

automagically find peers interested in a topic + iroh-gossip integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Peer merging strategies for recovering from network partitions.
//!
//! Two complementary strategies detect and heal split-brain scenarios:
//! - **Bubble Merge**: Joins small clusters (< `min_neighbors` peers, as configured in `BubbleMergeConfig::Enabled`) with peers advertised in DHT
//! - **Message Overlap**: Detects when isolated clusters have no common message hashes,
//!   indicating a network partition that should be healed by merging

mod bubble;
mod message_overlap;

pub use bubble::BubbleMerge;
pub use message_overlap::MessageOverlapMerge;