3–10×
Lower cost than Elasticsearch
Hot data lives on S3, not on replicated always-on SSD. You pay for object storage plus the compute you actually query with.
Apache-2.0 · Rust · self-hosted
3x cheaper than Elasticsearch. A storage-disaggregated search engine: S3 is the source of truth, local NVMe is a transparent cache, and compute nodes are disposable.
# pull and run the server
docker run --rm -p 8080:8080 \
ghcr.io/decover-tech/kosha:latest
# index, flush, search
export KOSHA_HOST=http://localhost:8080
export KOSHA_API_KEY=sk-kosha-dev
kosha index -n demo --file docs.jsonl
kosha flush -n demo
kosha search -n demo "breach"
Compare
Elasticsearch couples storage to stateful nodes. Turbopuffer separates them but only as a hosted service. Kosha does the separation in the open.
| Capability | Kosha | Elasticsearch | Turbopuffer |
|---|---|---|---|
| License | Apache-2.0, fully self-hosted | ELv2 / SSPL / AGPL, source-available | Closed source |
| Cost | 3–10× lower than Elasticsearch | Baseline | Usage-based vendor pricing |
| Storage | S3 is the source of truth; NVMe is a transparent cache | Replicated local disk on stateful nodes | Object storage, vendor-managed |
| Compute | Disposable stateless nodes, one Rust binary | Long-lived JVM cluster | Vendor-operated |
| Search | BM25 lexical + HNSW kNN in one engine | BM25 + kNN | Vector + full-text |
| Getting started | docker run, self-serve | Self-host or Elastic Cloud | Hosted signup only |
Benchmarks
3–10×
Hot data lives on S3, not on replicated always-on SSD. You pay for object storage plus the compute you actually query with.
At par
A read-through NVMe cache keeps working-set segments local, so warm queries never round-trip to object storage.
Phase 1
Indexing, filtering, aggregation, wildcard, match-phrase, and ANN search work today. RRF fusion and rerank are next.
Measured latency for both suites is in the hero. Cost figures on this page come from list pricing, not from a measured workload.
Community
Seven crates, an Apache-2.0 license, and a design doc you can argue with. Issues and pull requests are the roadmap.