Conversation
…re for horizontal scaling - Add Docker Compose 5-node cluster for Raft consensus testing - Add comprehensive integration tests for ruvector-raft, ruvector-cluster, ruvector-replication - Add performance benchmark tests with latency measurements - Verify all 69 unit tests pass (23 raft + 20 cluster + 26 replication) Tests cover: - Raft consensus: leader election, log replication, term management - Cluster management: node discovery, shard assignment, consistent hashing - Replication: sync modes, conflict resolution, failover management Closes #24 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Add Rust code examples showing how to use: - ruvector-raft: 5-node Raft cluster configuration - ruvector-cluster: Consistent hash ring with auto-sharding - ruvector-replication: SemiSync multi-master replication 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
ruvnet
added a commit
that referenced
this pull request
Feb 20, 2026
feat: Add distributed integration tests for horizontal scaling (Raft, Cluster, Replication)
ruvnet
added a commit
that referenced
this pull request
Apr 23, 2026
…ceiling
Module count is a real axis. At fixed N=512, sweeping num_modules ∈
{20, 25, 30, 35, 40, 45, 50} finds new peak full_ARI = 0.599 at
num_modules=20, γ=4.0 — 9 % higher than item-24's 0.549 at 35 modules.
Per-config peaks:
(20, 0.599) (25, 0.505) (30, 0.528) (35, 0.507)
(40, 0.559) (45, 0.566) (50, 0.517)
A second local maximum at num_modules ∈ [40, 45] suggests the quality
ridge is multi-modal, not unimodal.
New CPM ceiling: 0.599 at (N=512, 20 modules, γ=4.0). Gap to 0.75
AC-3a SOTA target narrows from 1.37× (item 24) to 1.25×.
- tests/leiden_cpm.rs: new leiden_cpm_module_count_sweep_at_n512
- ADR-154 §17 item 26 + heading Twenty-five → Twenty-six
- Row ordering fixed (#25/#26 were transposed)
Co-Authored-By: claude-flow <ruv@ruv.net>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Features Tested
Raft Consensus (
ruvector-raft)Cluster Management (
ruvector-cluster)Multi-Master Replication (
ruvector-replication)Test Infrastructure
Test plan
cargo test -p ruvector-raft- 23 tests passedcargo test -p ruvector-cluster- 20 tests passedcargo test -p ruvector-replication- 26 tests passedCloses #24
🤖 Generated with Claude Code