

Vector similarity search in ClickHouse using HNSW indexes for high-performance approximate nearest-neighbor (ANN) searches. Supports both exact brute-force and indexed search approaches with innovative QBit data type for query-time precision adjustment.
As of version 25.6.2.5, ClickHouse supports vector similarity indexing using the HNSW algorithm, enabling high-performance approximate nearest-neighbor (ANN) searches within the analytical database.
ClickHouse offers two main approaches for vector search:
Brute-force search using distance functions
Indexing vector fields
ClickHouse introduced a new data type QBit where no early decisions are needed and you can adjust precision and speed trade-off directly at query time. This allows for flexible optimization based on specific query requirements.
ClickHouse's vector search is built into its MergeTree table engine family, allowing seamless integration with existing analytical workloads and SQL queries.
Free and open-source (Apache 2.0 license). Commercial cloud offerings available through ClickHouse Cloud.
Loading more......