FAQ

Questions every CTO asks first.

The exact concerns we hear in every initial conversation — answered up front so you don't have to chase them.

Is VeltrixDB a drop-in replacement for Redis or DynamoDB?
For point-lookup workloads — yes. We ship a Redis-wire-compatible mode and a native client. If your application uses GET, SET, DEL, HGET-style commands, swap the connection string and you're running. If you rely on range scans, secondary indexes, or full-text search, VeltrixDB is the wrong tool — we'll tell you that in the demo.
How do you actually achieve sub-5ms P99 on disk-backed reads?
Three things: io_uring SQPOLL eliminates syscalls on the hot path, a 256 GB LIRS cache absorbs ~94% of reads, and key-value separation means compaction never touches the values — so background work never competes with your user requests for NVMe bandwidth.
What does the bill actually look like at scale?
You pay for the infrastructure (NVMe nodes), not per million operations. A 3-node Growth cluster serving 2M ops/sec typically lands between $2,490 and $4,800/month in cloud costs — customers migrating from DynamoDB usually see 3–5× reduction. We'll model your workload during the demo.
How does data durability and replication work?
Synchronous WAL with group-commit fsync. Multi-region clusters replicate over QUIC with active-active conflict resolution. RPO is zero for single-region failures, <30s for cross-region. The 99.99% SLA is contractual on Growth and Enterprise tiers.
What's the security and compliance story?
SOC 2 Type II and ISO 27001 certified. AES-256 encryption at rest, TLS 1.3 in transit, mTLS between nodes. GDPR and HIPAA compliant. Enterprise customers get custom DPAs, BYOK / KMS, VPC peering, and air-gapped deployment options.
How long does production migration take?
Median: two sprints. Helm install is 94 seconds. Then shadow-read traffic for 3–7 days to validate, then flip the connection. Enterprise migrations include a dedicated solutions architect end-to-end — no extra cost.
What happens if I outgrow my plan?
Clusters scale online — add nodes, the operator reshards automatically without read interruption. You can upgrade tiers any time with no data migration; we just unlock the additional capacity and support level on your existing cluster.
Is VeltrixDB open source?
Yes — VeltrixDB is fully open source under Apache 2.0. The server and all core client libraries live on GitHub: clone it, run it, fork it, send PRs. No license keys, no trial limits, no feature-gated tiers — the whole engine is free to use in production.
Resources

Built for teams who read the docs.

Every claim on this page has a benchmark, a paper, or a config file behind it. Go deep before you commit.

Get the benchmark report in your inbox.

One email. The full methodology, raw P99 distributions, and a side-by-side cost analysis vs DynamoDB, Redis Enterprise, and Cassandra at 1B keys.

Email us on veltrixdb@gmail.com
Why we built this

Born from a 3 AM page.

VeltrixDB started the night a flash sale buried our Redis cluster under 8 GB of session state. The on-call channel filled with screenshots of P99 climbing past 400 ms. The bill that quarter was already 3× what we'd budgeted.

We tried every workaround you've tried — read replicas, write batching, a DynamoDB migration that ended with a quarter of unpredictable per-op billing. None of it solved the actual problem.

The real problem was that every popular database rewrites your values during compaction. It's a 10× amplification tax on storage and a guaranteed spike in tail latency exactly when you can least afford it.

So we built VeltrixDB the way we wished a database had been built when we were on call: key–value separation so compaction never touches values, io_uring so the kernel never gets in the way, and fixed cluster pricing so the bill never surprises you.

Now we ship it to teams who recognise their own war stories in ours.

AG
Akanksha Gupta
Founder, VeltrixDB

A question we didn't answer?

Answered by the people who wrote the storage engine · Usually within a day