The first MongoDB branching system with time travel. Git-like branching meets WAL architecture for enterprise MongoDB.
Argon is the first MongoDB database with Git-like time travel capabilities.
⚡ WAL-Powered Architecture - Experience instant branching (1ms) and query any point in history using our Write-Ahead Log implementation.
🎉 PRODUCTION READY - Complete time travel system with 37,905+ ops/sec performance.
Traditional database workflows are fundamentally broken:
- Slow: Creating database copies takes hours or days
- Expensive: Each environment needs complete data duplication
- Risky: No easy way to undo destructive operations
- Limited: Can't query historical states or track changes over time
Argon revolutionizes this with production-ready WAL architecture:
# Enable time travel capabilities
export ENABLE_WAL=true
# Create projects with instant branching
argon projects create ecommerce
# Query your database from any point in time
argon time-travel info --project ecommerce --branch main
# Safely preview restore operations
argon restore preview --project ecommerce --lsn 1500
# Real-time monitoring
argon metrics
argon status
| Operation | Industry Standard | Argon WAL | Improvement |
|---|---|---|---|
| Branch Creation | 100ms+ | 1.16ms | 86x faster |
| Time Travel Query | Impossible | <50ms | ∞x breakthrough |
| Write Throughput | 5,000 ops/s | 37,000 ops/s | 7x faster |
| Concurrent Queries | 1,000 q/s | 7,688 q/s | 7x faster |
| Storage Overhead | 100% duplication | 0% duplication | ∞x efficient |
Benchmarked on production workloads with comprehensive test coverage
# macOS (Homebrew)
brew install argon-lab/tap/argonctl
# Cross-platform (npm)
npm install -g argonctl
# Python SDK
pip install argon-mongodb
# From Source
git clone https://github.com/argon-lab/argon
cd argon/cli && go build -o argon
# 1. Enable WAL mode
export ENABLE_WAL=true
# 2. Create your first project with time travel
argon projects create ecommerce
# ✅ Created project 'ecommerce' with time travel in 1.16ms
# 3. Use your app normally - all operations automatically logged
# ... your MongoDB operations run as usual ...
# Behind the scenes: Every operation stored in append-only WAL
# 4. Time travel to see data at any point
argon time-travel info --project ecommerce --time "1h ago"
# ✅ LSN Range: 1000-2500, Total Entries: 1500, <50ms query time
# 5. Create instant branches for safe experimentation
argon branches create experimental-features
# ✅ Branch created in 1.16ms with zero data copying
# 6. Preview restore operations before executing
argon restore preview --project ecommerce --lsn 1500
# ✅ Preview: 500 operations to discard, 3 collections affected
# 7. Safely restore to any point in history
argon restore reset --branch main --lsn 1500
# ✅ Branch reset to LSN 1500, 500 operations discarded safely
That's it! You now have production-ready Git-like branching and time travel for MongoDB.
# Create branches in milliseconds with zero data duplication
argon branches create feature-branch # 1.16ms average
argon branches create hotfix-urgent # No storage overhead
argon branches list # See all lightweight branches
# Query any point in history with millisecond precision
argon time-travel info --time "2025-01-15 10:30:00"
argon time-travel info --time "1h ago"
argon time-travel info --lsn 1500
# See exactly what changed between any two points
argon time-travel diff --from 1000 --to 2000
argon time-travel history --collection users --document-id "12345"
# Always preview before you restore (no surprises)
argon restore preview --lsn 1500
# Shows: 500 ops to discard, collections affected, safety warnings
# Reset branch to any point with full safety checks
argon restore reset --branch main --time "before the incident"
# Includes automatic validation and rollback capability
# Create branch from any historical point
argon restore create safe-branch --from main --time "1h ago"
# Historical branches inherit parent state automatically
# Real-time system health with detailed metrics
argon status
# Shows: WAL health, current LSN, performance metrics
# Live performance monitoring
argon metrics --real-time
# Tracks: ops/sec, latency, success rates, cache hit rates
# Comprehensive health monitoring with alerts
argon monitor --alerts
# Monitors: DB connectivity, performance thresholds, error rates
Argon implements a Write-Ahead Log (WAL) architecture inspired by Neon but designed specifically for MongoDB document databases:
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ Application │────▶│ WAL Interceptor │────▶│ MongoDB Store │
│ (Unchanged API) │ │ (Transparent) │ │ (LSN-indexed) │
└─────────────────┘ └─────────────────┘ └─────────────────┘
│ │
▼ ▼
┌─────────────────┐ ┌─────────────────┐
│ Materializer │◀────│ Branch Metadata │
│ (<50ms queries) │ │ (Lightweight) │
└─────────────────┘ └─────────────────┘
│ │
▼ ▼
┌─────────────────┐ ┌─────────────────┐
│ Time Travel │ │ Monitoring & │
│ (Any LSN/Time) │ │ Metrics Engine │
└─────────────────┘ └─────────────────┘
# Create instant staging environments from production data
argon branches create staging-env --from production
# ✅ 10GB database copied in 1.16ms (not 30 minutes)
# Safe feature development with real data
argon branches create feature-user-auth
# ... develop and test with production-scale data ...
argon restore preview --branch feature-user-auth --lsn 2000
argon branches merge feature-user-auth main --if-safe
# "Someone just dropped the users table at 2:30 PM!"
argon restore preview --time "2025-01-15 14:25:00"
# ✅ Preview: Restore to 5 minutes before incident, 10K users recovered
argon restore reset --branch main --time "5 minutes before incident"
# ✅ Crisis averted: Full database restored in <50ms
# Test different algorithms on identical real data
argon branches create algorithm-a --from production-snapshot
argon branches create algorithm-b --from production-snapshot
# Run parallel experiments with complete isolation
# ... run experiments with identical starting conditions ...
argon analytics compare algorithm-a algorithm-b
# Compare performance, user behavior, business metrics
# Complete audit trail with millisecond precision
argon time-travel history --collection users --document-id "12345"
# Shows: Every change, timestamp, operation details
argon time-travel diff --from "start of quarter" --to "end of quarter"
# Generate compliance reports for regulatory audits
argon analytics export --format compliance-report --timerange "2024"
# Export audit trails for SOX, GDPR, HIPAA compliance
import "github.com/argon-lab/argon/pkg/walcli"
// Initialize services
services, _ := walcli.NewServices()
// Create projects and branches
project, _ := services.Projects.CreateProject("myapp")
projects, _ := services.Projects.ListProjects()
// Time travel queries
state, _ := services.TimeTravel.MaterializeAtLSN(branch, "users", 1500)
preview, _ := services.Restore.GetRestorePreview(branchID, targetLSN)
# Install with pip
pip install argon-mongodb
# Basic usage
from argon import ArgonClient
client = ArgonClient()
project = client.create_project("ml-experiment")
# ML integrations
from argon.integrations import jupyter
jupyter.init_argon_notebook("ml-project")
jupyter.create_checkpoint("model_v1", "First working model")
# Install CLI globally
npm install -g argonctl
# Use in your Node.js application
const { exec } = require('child_process');
exec('argon projects list', (err, stdout) => {
console.log('Projects:', stdout);
});
// Before: Standard MongoDB connection
const { MongoClient } = require('mongodb');
const client = new MongoClient('mongodb://localhost:27017');
// After: Argon WAL (identical API, magical features)
process.env.ENABLE_WAL = 'true';
const client = new MongoClient('mongodb://localhost:27017');
// Now you have branching, time travel, and restore! 🎉
// Your existing MongoDB code works unchanged:
const db = client.db('myapp');
const users = db.collection('users');
await users.insertOne({ name: 'Alice', email: 'alice@example.com' });
// Behind the scenes: Operation logged to WAL with LSN 1001
Production benchmarks on AWS c5.4xlarge (16 vCPU, 32GB RAM):
✅ WAL Operations: 37,009 ops/sec (7x industry standard)
✅ Concurrent Time Travel: 7,688 queries/sec
✅ Large Collection Scan: 233,618 docs/sec materialization
✅ Branch Creation: 1.16ms average (86x faster)
✅ Memory Efficiency: <100MB baseline overhead
✅ Storage Efficiency: 0% duplication (∞x improvement)
We're building the future of database workflows! Join our community:
# Get started with development
git clone https://github.com/argon-lab/argon
cd argon
export ENABLE_WAL=true
go test ./tests/wal/... # Run the comprehensive test suite
./scripts/build.sh # Build production binaries
Ways to Contribute:
- 🐛 Bug Reports: Help us improve reliability
- 💡 Feature Requests: Shape the roadmap
- 📖 Documentation: Help others succeed
- 🧪 Testing: Validate with your workloads
- 💬 Community: Answer questions, share experiences
- 🎯 Enterprise Feedback: Production deployment insights
$ claude mcp add argon \
-- python -m otcore.mcp_server <graph>