- Tech Lead · AWS Search
Built by the team that created OpenSearch
- Head of Eng · AWS Search
- GM, AWS Search
- Chief Architect · AWS Search
What your workload costs on Parquet
Elastic Cloud Hosted · Platinum
OpenSearch Service
Infino Cloud Pricing. methodology →
Measured search latency
- Warm
- Cold
- Warm
- Cold
Lower is faster. Infino is submitted and awaiting publication. Infino’s results are single node.
Lower is faster. All runs on c6a.4xlarge.
Lower is faster. All runs on c6a.4xlarge.
- Search (top-k)
- Count
Lower is faster. Infino is submitted and awaiting publication. Infino trails Lucene by 19% on top-k search and leads it by 26% on counts, where it is also faster than Tantivy.
How Infino fits your existing stack
query DSL
parquet
catalog integration
Accurate, token-saving, & expressive querying.
Table-valued functions let search results compose as ordinary SQL tables, so one query replaces several. Agents make fewer LLM round trips; humans find what they need faster.
-- one query: hybrid search + SQL filters SELECT _id, title, score FROM hybrid_search( -- FTS + vector, fused by RRF 'logs', 'body', 'disk full', -- the text side 'embedding', :q, 50 -- the vector side, top 50 ) WHERE level = 'error' -- pushed-down filter AND ts > now() - interval '24 hours' -- on the same pass ORDER BY score DESC -- one fused ranking LIMIT 10;
Analytics & Search Combined.
Search results are a relation, so follow-up questions stay in SQL, inline in the same query. Getting from “find disk-full errors” to “which team had them” takes one query, for a person or an agent.
-- a ranked search is a relation: join it, group it, aggregate it SELECT s.team, count(*) AS hits, -- rows per team avg(h.score) AS relevance -- mean fused score FROM hybrid_search( -- the same hybrid search 'logs', 'body', 'disk full', 'embedding', :q, 1000 ) AS h JOIN services s ON s.id = h.service_id -- a plain table WHERE h.ts > now() - interval '7 days' GROUP BY s.team ORDER BY hits DESC;
Engine at a glance
- search
- full-text · vector · hybrid
- index
- BM25 (PFOR-delta, FST) · HNSW · OPANN + Sq16
- engine
- Rust
- language
- SQL (Apache DataFusion) · REST · Query DSL
- storage
- object storage, S3 · GCS · Azure Blob · on-prem
- format
- Apache Parquet
- deploy
- on-prem · self-hosted cloud · hosted cloud
- core license
- Apache-2.0