ruvector/benchmarks/package.json
Claude f3f7a95752 feat: Add Neo4j-compatible hypergraph database package (ruvector-graph)
Major new package implementing a distributed hypergraph database with:

## Core Components (crates/ruvector-graph/)
- Cypher-compatible query parser with lexer, AST, optimizer
- Query execution engine with SIMD optimization and parallel execution
- ACID transaction support with MVCC isolation levels
- Distributed consensus and federation layer
- Vector-graph hybrid queries for AI/RAG workloads
- Performance optimizations (100x faster than Neo4j target)

## Bindings
- WASM bindings (crates/ruvector-graph-wasm/)
- NAPI-RS Node.js bindings (crates/ruvector-graph-node/)
- NPM packages for both targets

## CLI Integration
- 8 new graph commands: create, query, shell, import, export, info, benchmark, serve

## CI/CD
- Updated build-native.yml for graph packages
- New graph-ci.yml for testing and benchmarks
- New graph-release.yml for automated publishing

## Data Generation
- OpenRouter/Kimi K2 integration (packages/graph-data-generator/)
- Agentic-synth benchmark suite integration

## Tests & Benchmarks
- 11 test files covering all components
- Criterion benchmarks for performance validation
- Neo4j compatibility test suite

## Architecture Highlights
- CSR graph layout for cache-friendly access
- SIMD-vectorized query operators
- Roaring bitmaps for label indexes
- Bloom filters for fast negative lookups
- Adaptive radix tree for property indexes

Note: This is a comprehensive implementation created by 15 parallel agents.
Some integration fixes may be needed to resolve cross-module dependencies.

Co-authored-by: Claude AI Swarm <swarm@claude.ai>
2025-11-25 23:11:54 +00:00

58 lines
2.1 KiB
JSON

{
"name": "@ruvector/benchmarks",
"version": "1.0.0",
"description": "Enterprise-grade benchmarking suite for RuVector distributed vector search",
"main": "benchmark-runner.ts",
"scripts": {
"setup": "./setup.sh",
"list": "ts-node benchmark-runner.ts list",
"test:quick": "ts-node benchmark-runner.ts run baseline_100m",
"test:baseline": "ts-node benchmark-runner.ts run baseline_500m",
"test:burst": "ts-node benchmark-runner.ts run burst_10x",
"test:standard": "ts-node benchmark-runner.ts group standard_suite",
"test:stress": "ts-node benchmark-runner.ts group stress_suite",
"test:reliability": "ts-node benchmark-runner.ts group reliability_suite",
"test:full": "ts-node benchmark-runner.ts group full_suite",
"dashboard": "python -m http.server 8000 || python3 -m http.server 8000 || npx http-server",
"clean": "rm -rf results/*",
"graph:generate": "ts-node graph/graph-data-generator.ts",
"graph:bench": "cd ../crates/ruvector-graph && cargo bench --bench graph_bench",
"graph:compare": "ts-node graph/comparison-runner.ts",
"graph:compare:social": "ts-node graph/comparison-runner.ts social_network",
"graph:compare:knowledge": "ts-node graph/comparison-runner.ts knowledge_graph",
"graph:compare:temporal": "ts-node graph/comparison-runner.ts temporal_events",
"graph:report": "ts-node graph/results-report.ts",
"graph:all": "npm run graph:generate && npm run graph:bench && npm run graph:compare && npm run graph:report"
},
"keywords": [
"benchmark",
"load-testing",
"performance",
"k6",
"vector-search",
"distributed-systems"
],
"author": "RuVector Team",
"license": "MIT",
"dependencies": {
"@ruvector/agentic-synth": "workspace:*"
},
"devDependencies": {
"@types/k6": "^0.52.0",
"@types/node": "^20.10.0",
"typescript": "^5.3.0",
"ts-node": "^10.9.0"
},
"optionalDependencies": {
"claude-flow": "^2.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ruvnet/ruvector.git",
"directory": "benchmarks"
}
}