cd /news/developer-tools/cameodb-update-native-mcp-support-je… · home topics developer-tools article
[ARTICLE · art-69902] src=github.com ↗ pub= topic=developer-tools verified=true sentiment=↑ positive

CameoDB update: native MCP support, jemalloc, and a 400M-record field test

CameoDB, a decentralized leaderless database combining an ACID-compliant key-value store with a full-text inverted index, announced an update adding native MCP support, jemalloc memory management, and a 400M-record field test. The database leverages the Kameo actor framework and Tokio async runtime for distributed full-text search without a central master, and is available as a single self-contained executable with Docker deployment.

read3 min views1 publishedJul 23, 2026
CameoDB update: native MCP support, jemalloc, and a 400M-record field test
Image: source

CameoDB is a decentralized, leaderless database that combines the durability of an ACID-compliant Key-Value store (redb

) with the power of a full-text inverted index engine (tantivy

).

By leveraging the Kameo actor framework and Tokio's async runtime, CameoDB provides blazingly fast full-text search across distributed nodes—without the overhead of a central master.

Hybrid Storage Architecture: Every shard is an atomic unit containing both a KV store (for data/WAL) and an inverted index (for full-text search).Decentralized Topology: Zero master nodes. Utilizes Consistent Hashing and a custom Kademlia DHT behavior for seamless peer discovery and routing.Supervised Smart Commits: Intelligently batches writes with micro-second precision to optimize throughput while maintaining strict crash durability.Tiered Cache Sizing: Dynamically budgets memory across active shards based on system RAM to ensure steady-state operational safety.Sophisticated Schema Detection: Automatically infers and maps indices from raw data payloads via versatile columnar structural testing and verifiable format detections.Intelligent Data : Robust, zero-copy ingestion pipeline that transparently handles multiple formats (CSV

,TSV

,JSON

,JSONL

) and on-the-fly decompression (Gzip

,Bzip2

,Zstd

,XZ

,LZ4

,Deflate

). It supports from local disk, distributed network files, and directly streaming from HTTP(S) endpoints.Consistent Hybrid Recovery: Guarantees data consistency during startup by automatically recovering and syncing uncommitted records from the ACID datastore (KV) into the search index.Graceful Shutdowns: Multi-phase process ensuring zero WAL replay on clean reboots.Production Memory Management: Jemalloc allocator with per-CPU arenas, background purge threads, and runtime admin endpoints for memory diagnostics and manual intervention.Writer Core Pinning: Optional CPU core affinity for shard writer threads to improve cache locality and reduce scheduling jitter on the write hot path.

Get a single-node CameoDB instance up and running instantly using Docker.

mkdir -p $(pwd)/data/cameodb
chown -R 65532:65532 $(pwd)/data/cameodb

docker run -d \
  --name cameodb-server \
  -p 9480:9480 \
  -p 9580:9580 \
  -v $(pwd)/data/cameodb:/data/cameodb \
  goranc/cameodb:latest

docker run -it --rm \
  --network host \
  goranc/cameodb:latest \
  client --interactive --connect http://localhost:9480

(CameoDB's HTTP API is now available on http://localhost:9480)

For more deployment options (Docker Compose, multi-node clusters), see the Deployment Guide.

Dive deeper into CameoDB's architecture and APIs:

CameoDB is distributed as a single, self-contained executable. It acts as the database server, a powerful CLI client, a schema operator, and a bulk data .

cameodb

The easiest way to explore CameoDB is through its interactive REPL, which provides auto-completion, history, and colorized JSON outputs.

cameodb client --interactive

cameodb@localhost:9480 ▶ health
cameodb@localhost:9480 ▶ schema detect ./examples/data/booksummaries.tsv
cameodb@localhost:9480 ▶ data load books ./examples/data/booksummaries.tsv
cameodb@localhost:9480 ▶ search books "title:Hitchhiker" limit 10
cameodb@localhost:9480 ▶ admin memory stats
cameodb@localhost:9480 ▶ admin memory purge --force

The CLI client features a robust, zero-copy ingestion pipeline that transparently handles:

Formats:CSV

,TSV

,JSON

(Documents/Arrays), andJSONL/NDJSON

.Compression: Automatically detects and decompressesGzip (.gz)

,Bzip2 (.bz2)

,Zstd (.zst)

,XZ (.xz)

,LZ4 (.lz4)

, andDeflate

formats on the fly.Sources: Ingest data from local disk files, mounted network paths, or by streaming directly from publicHTTP/HTTPS

URLs.

We welcome contributions! Whether it's adding new features, fixing bugs, or improving documentation, check out our Contributing Guidelines to get started.

Please review our Code of Conduct before participating in the community.

If you discover a vulnerability, please refer to our Security Policy.

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

── more in #developer-tools 4 stories · sorted by recency
── more on @cameodb 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/cameodb-update-nativ…] indexed:0 read:3min 2026-07-23 ·