mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-22 19:56:25 +00:00
* fix(rvlite): Resolve getrandom WASM conflict with hnsw_rs patch Resolves the getrandom version conflict that prevented rvlite from compiling to WASM. The issue was caused by hnsw_rs 0.3.3 using rand 0.9 -> getrandom 0.3, while the workspace uses rand 0.8 -> getrandom 0.2. Changes: - Add [patch.crates-io] to workspace Cargo.toml for hnsw_rs - Include patched hnsw_rs 0.3.3 with rand 0.8 dependency - Modify hnsw_rs/Cargo.toml: rand = "0.8" (was "0.9") Note: This patch is applied but not actively used since rvlite disables the HNSW feature via default-features = false. The patch ensures compatibility if HNSW is enabled in the future. Build Status: ✅ WASM compiles successfully ✅ Bundle size: 96 KB gzipped (with ruvector-core) ✅ Full vector operations working ✅ No getrandom conflicts Related: - rvlite uses ruvector-core with memory-only feature - Avoids hnsw_rs dependency via default-features = false - Target-specific getrandom dependency enables "js" feature 🤖 Generated with Claude Code * feat(rvlite): Add multi-query language support (SPARQL, SQL, Cypher) This comprehensive update adds support for three query languages to rvlite, making it a versatile WASM-powered vector database with knowledge graph capabilities. The implementation includes full parsers, AST representations, and executors for each language. ## SPARQL Implementation - W3C SPARQL 1.1 compliant query parser - Triple pattern matching with subject/predicate/object - SELECT, CONSTRUCT, ASK, and DESCRIBE query forms - FILTER expressions with comparison and logical operators - OPTIONAL patterns and UNION support - ORDER BY, LIMIT, OFFSET modifiers - Built-in RDF triple store with in-memory indexing ## SQL Implementation - Standard SQL SELECT with projections and aliases - WHERE clause with complex boolean expressions - JOIN support (INNER, LEFT, RIGHT, FULL, CROSS) - Aggregate functions (COUNT, SUM, AVG, MIN, MAX) - GROUP BY and HAVING clauses - ORDER BY with ASC/DESC, LIMIT/OFFSET - Subqueries and nested expressions - Vector similarity search via special syntax ## Cypher Implementation - Neo4j-compatible Cypher query language - MATCH patterns with node and relationship traversal - CREATE, MERGE, SET, DELETE operations - WHERE clause filtering - RETURN with aliases and expressions - ORDER BY, SKIP, LIMIT modifiers - Variable-length path patterns - Property graph store with adjacency indexing ## Additional Changes - Interactive React dashboard with visualization - Supply chain simulation demo - Graph visualization components - IndexedDB persistence layer for browser storage - WASM getrandom conflict resolution for hnsw_rs - SONA time compatibility for cross-platform builds - NPM package for rvlite distribution - Documentation for all query implementations 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| dev.sh | ||
| docker-compose.yml | ||
| Dockerfile | ||
| Dockerfile.test | ||
| init.sql | ||
| README.md | ||
| run-tests.sh | ||
RuVector-Postgres Docker Infrastructure
Docker-based development and testing environment for the ruvector-postgres PostgreSQL extension.
Quick Start
Development Environment
# Start development environment
./dev.sh start
# Open psql shell
./dev.sh psql
# Watch for changes and auto-reload
./dev.sh watch
# Stop environment
./dev.sh stop
Running Tests
# Run full test suite
./run-tests.sh
# Run integration tests only
./run-tests.sh --integration
# Keep container running for debugging
./run-tests.sh --keep-running
# Clean rebuild
./run-tests.sh --clean
Scripts Overview
dev.sh - Development Environment
Manages a PostgreSQL development environment with hot-reload support.
Commands:
start- Start development environment (default)stop- Stop development environmentrestart- Restart development environmentlogs- Show PostgreSQL logspsql- Open psql shellwatch- Start file watcher for hot-reload (requires cargo-watch)rebuild- Rebuild and reload extensionstatus- Show container status
Options:
-p, --port PORT- PostgreSQL port (default: 5432)-u, --user USER- PostgreSQL user (default: postgres)-d, --database DB- PostgreSQL database (default: ruvector_dev)-f, --foreground- Start in foreground with logs-h, --help- Show help message
Examples:
# Start on custom port
./dev.sh --port 5433 start
# View logs
./dev.sh logs
# Rebuild extension
./dev.sh rebuild
run-tests.sh - Test Runner
Builds Docker image, runs tests, and manages test infrastructure.
Options:
-b, --build-only- Build Docker image only, don't run tests-t, --test-only- Run tests only (skip build)-i, --integration- Run integration tests only-k, --keep-running- Keep container running after tests-c, --clean- Clean up before starting-v, --keep-volumes- Keep volumes after cleanup-p, --port PORT- PostgreSQL port (default: 5433)-h, --help- Show help message
Examples:
# Build and test
./run-tests.sh
# Integration tests with container kept running
./run-tests.sh --integration --keep-running
# Clean rebuild
./run-tests.sh --clean --build-only
Docker Files
Dockerfile - Main Build File
Multi-stage Docker build for PostgreSQL 16 with pgrx 0.12.6 support.
Features:
- Rust 1.75 with Bookworm base
- PostgreSQL 16 with development headers
- cargo-pgrx 0.12.6 pre-installed
- Optimized layer caching for dependencies
- Health checks built-in
docker-compose.yml - Orchestration
Complete development stack with PostgreSQL and pgAdmin.
Services:
postgres- PostgreSQL 16 with ruvector extensionpgadmin- Web-based database management (port 5050)
Usage:
# Start all services
docker-compose up -d
# View logs
docker-compose logs -f
# Stop services
docker-compose down
# Access pgAdmin
# URL: http://localhost:5050
# Email: admin@ruvector.dev
# Password: admin
init.sql - Database Initialization
SQL script for automatic database setup with:
- Extension creation
- Sample tables and indexes
- Test data
- Performance monitoring views
Development Workflow
1. Initial Setup
# Start development environment
./dev.sh start
# This will:
# - Pull PostgreSQL 16 image
# - Create development database
# - Expose on localhost:5432
# - Show connection string
2. Build Extension
cd /workspaces/ruvector/crates/ruvector-postgres
# Build and install extension
cargo pgrx install --release
3. Test Changes
# Quick test in psql
./dev.sh psql
# In psql:
# CREATE EXTENSION ruvector_postgres;
# SELECT '[1,2,3]'::vector;
4. Hot-Reload Development
# Install cargo-watch (one time)
cargo install cargo-watch
# Start watching for changes
./dev.sh watch
# Now edit code - extension auto-reloads on save!
5. Run Full Test Suite
# Run all tests
./run-tests.sh
# Or run just integration tests
./run-tests.sh --integration
Environment Variables
Development (dev.sh)
POSTGRES_PORT=5432 # PostgreSQL port
POSTGRES_USER=postgres # PostgreSQL user
POSTGRES_PASSWORD=postgres # PostgreSQL password
POSTGRES_DB=ruvector_dev # Database name
Testing (run-tests.sh)
POSTGRES_PORT=5433 # PostgreSQL port (different from dev)
POSTGRES_USER=ruvector # PostgreSQL user
POSTGRES_PASSWORD=ruvector # PostgreSQL password
POSTGRES_DB=ruvector_test # Test database name
KEEP_VOLUMES=false # Keep volumes after cleanup
EXPORT_DB=false # Export database dump
Platform Support
Both scripts support:
- ✅ Linux (Ubuntu, Debian, RHEL, etc.)
- ✅ macOS (Intel and Apple Silicon)
- ✅ Windows (via WSL2)
The scripts automatically detect the platform and adjust behavior accordingly.
Troubleshooting
Port Already in Use
# Check what's using the port
lsof -i :5432
# Use a different port
./dev.sh --port 5433 start
Extension Not Loading
# Rebuild extension
./dev.sh rebuild
# Or manually:
cd /workspaces/ruvector/crates/ruvector-postgres
cargo pgrx install --release
# Then reload in database
./dev.sh psql
# DROP EXTENSION ruvector_postgres CASCADE;
# CREATE EXTENSION ruvector_postgres;
Docker Build Fails
# Clean build
docker system prune -a
./run-tests.sh --clean --build-only
# Check Docker resources
docker info
Tests Fail
# Keep container running to debug
./run-tests.sh --keep-running
# Connect to inspect
./dev.sh psql
# View logs
docker logs ruvector-postgres-test
Performance Tips
Build Optimization
# Use BuildKit for faster builds
export DOCKER_BUILDKIT=1
./run-tests.sh
# Parallel builds
docker build --build-arg MAKEFLAGS="-j$(nproc)" ...
Development Speed
# Use cargo-watch for instant feedback
./dev.sh watch
# Or use cargo-pgrx run for interactive development
cd /workspaces/ruvector/crates/ruvector-postgres
cargo pgrx run pg16
CI/CD Integration
GitHub Actions Example
name: Test RuVector-Postgres
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
cd crates/ruvector-postgres/docker
./run-tests.sh
GitLab CI Example
test:
image: docker:latest
services:
- docker:dind
script:
- cd crates/ruvector-postgres/docker
- ./run-tests.sh
Resources
License
MIT License - See project root for details