2023-08-14 07:10:50 +00:00
|
|
|
# Approximate Nearest Neighbor Search Indexes [experimental]
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
Nearest neighborhood search is the problem of finding the M closest points for a given point in an N-dimensional vector space. The most
|
|
|
|
straightforward approach to solve this problem is a brute force search where the distance between all points in the vector space and the
|
|
|
|
reference point is computed. This method guarantees perfect accuracy but it is usually too slow for practical applications. Thus, nearest
|
|
|
|
neighborhood search problems are often solved with [approximative algorithms](https://github.com/erikbern/ann-benchmarks). Approximative
|
|
|
|
nearest neighborhood search techniques, in conjunction with [embedding
|
|
|
|
methods](https://cloud.google.com/architecture/overview-extracting-and-serving-feature-embeddings-for-machine-learning) allow to search huge
|
|
|
|
amounts of media (pictures, songs, articles, etc.) in milliseconds.
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
Blogs:
|
|
|
|
- [Vector Search with ClickHouse - Part 1](https://clickhouse.com/blog/vector-search-clickhouse-p1)
|
|
|
|
- [Vector Search with ClickHouse - Part 2](https://clickhouse.com/blog/vector-search-clickhouse-p2)
|
|
|
|
|
|
|
|
|
|
|
|
In terms of SQL, the nearest neighborhood problem can be expressed as follows:
|
2023-05-25 21:16:03 +00:00
|
|
|
|
|
|
|
``` sql
|
|
|
|
SELECT *
|
2023-08-14 08:50:20 +00:00
|
|
|
FROM table_with_ann_index
|
2023-06-08 08:10:40 +00:00
|
|
|
ORDER BY Distance(vectors, Point)
|
2022-08-30 15:26:56 +00:00
|
|
|
LIMIT N
|
|
|
|
```
|
2022-10-28 17:03:35 +00:00
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
`vectors` contains N-dimensional values of type [Array](../../../sql-reference/data-types/array.md) or
|
|
|
|
[Tuple](../../../sql-reference/data-types/tuple.md), for example embeddings. Function `Distance` computes the distance between two vectors.
|
|
|
|
Often, the the Euclidean (L2) distance is chosen as distance function but [other
|
|
|
|
distance functions](/docs/en/sql-reference/functions/distance-functions.md) are also possible. `Point` is the reference point, e.g. `(0.17,
|
|
|
|
0.33, ...)`, and `N` limits the number of search results.
|
|
|
|
|
|
|
|
An alternative formulation of the nearest neighborhood search problem looks as follows:
|
|
|
|
|
2023-05-25 21:16:03 +00:00
|
|
|
``` sql
|
|
|
|
SELECT *
|
2023-08-14 08:50:20 +00:00
|
|
|
FROM table_with_ann_index
|
2023-06-08 08:10:40 +00:00
|
|
|
WHERE Distance(vectors, Point) < MaxDistance
|
2022-10-28 17:03:35 +00:00
|
|
|
LIMIT N
|
|
|
|
```
|
2023-05-25 21:16:03 +00:00
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
While the first query returns the top-`N` closest points to the reference point, the second query returns all points closer to the reference
|
|
|
|
point than a maximally allowed radius `MaxDistance`. Parameter `N` limits the number of returned values which is useful for situations where
|
|
|
|
`MaxDistance` is difficult to determine in advance.
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
With brute force search, both queries are expensive (linear in the number of points) because the distance between all points in `vectors` and
|
|
|
|
`Point` must be computed. To speed this process up, Approximate Nearest Neighbor Search Indexes (ANN indexes) store a compact representation
|
|
|
|
of the search space (using clustering, search trees, etc.) which allows to compute an approximate answer much quicker (in sub-linear time).
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-08-14 07:10:50 +00:00
|
|
|
# Creating and Using ANN Indexes {#creating_using_ann_indexes}
|
2023-06-05 13:13:49 +00:00
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
Syntax to create an ANN index over an [Array](../../../sql-reference/data-types/array.md) column:
|
2023-06-05 13:13:49 +00:00
|
|
|
|
|
|
|
```sql
|
2023-08-14 08:50:20 +00:00
|
|
|
CREATE TABLE table_with_ann_index
|
2023-06-05 13:13:49 +00:00
|
|
|
(
|
|
|
|
`id` Int64,
|
2023-06-08 08:10:40 +00:00
|
|
|
`vectors` Array(Float32),
|
2023-06-13 15:13:13 +00:00
|
|
|
INDEX [ann_index_name vectors TYPE [ann_index_type]([ann_index_parameters]) [GRANULARITY [N]]
|
2023-06-05 13:13:49 +00:00
|
|
|
)
|
|
|
|
ENGINE = MergeTree
|
|
|
|
ORDER BY id;
|
|
|
|
```
|
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
Syntax to create an ANN index over a [Tuple](../../../sql-reference/data-types/tuple.md) column:
|
2023-06-05 13:13:49 +00:00
|
|
|
|
|
|
|
```sql
|
2023-08-14 08:50:20 +00:00
|
|
|
CREATE TABLE table_with_ann_index
|
2023-06-05 13:13:49 +00:00
|
|
|
(
|
|
|
|
`id` Int64,
|
2023-06-08 08:10:40 +00:00
|
|
|
`vectors` Tuple(Float32[, Float32[, ...]]),
|
2023-06-13 15:13:13 +00:00
|
|
|
INDEX [ann_index_name] vectors TYPE [ann_index_type]([ann_index_parameters]) [GRANULARITY [N]]
|
2023-06-05 13:13:49 +00:00
|
|
|
)
|
|
|
|
ENGINE = MergeTree
|
|
|
|
ORDER BY id;
|
|
|
|
```
|
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
ANN indexes are built during column insertion and merge. As a result, `INSERT` and `OPTIMIZE` statements will be slower than for ordinary
|
|
|
|
tables. ANNIndexes are ideally used only with immutable or rarely changed data, respectively when are far more read requests than write
|
|
|
|
requests.
|
2023-06-05 13:13:49 +00:00
|
|
|
|
|
|
|
ANN indexes support two types of queries:
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-05-25 21:16:03 +00:00
|
|
|
- ORDER BY queries:
|
2023-06-05 13:13:49 +00:00
|
|
|
|
2022-08-30 15:26:56 +00:00
|
|
|
``` sql
|
2023-05-25 21:16:03 +00:00
|
|
|
SELECT *
|
2023-08-14 08:50:20 +00:00
|
|
|
FROM table_with_ann_index
|
2023-06-05 13:13:49 +00:00
|
|
|
[WHERE ...]
|
2023-06-08 08:10:40 +00:00
|
|
|
ORDER BY Distance(vectors, Point)
|
2022-08-30 15:26:56 +00:00
|
|
|
LIMIT N
|
|
|
|
```
|
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
- WHERE queries:
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
SELECT *
|
2023-08-14 08:50:20 +00:00
|
|
|
FROM table_with_ann_index
|
2023-06-08 08:10:40 +00:00
|
|
|
WHERE Distance(vectors, Point) < MaxDistance
|
|
|
|
LIMIT N
|
|
|
|
```
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-06-05 13:13:49 +00:00
|
|
|
:::tip
|
2023-06-08 08:10:40 +00:00
|
|
|
To avoid writing out large vectors, you can use [query
|
2023-06-12 20:06:57 +00:00
|
|
|
parameters](/docs/en/interfaces/cli.md#queries-with-parameters-cli-queries-with-parameters), e.g.
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-05-25 21:16:03 +00:00
|
|
|
```bash
|
2023-08-14 08:50:20 +00:00
|
|
|
clickhouse-client --param_vec='hello' --query="SELECT * FROM table_with_ann_index WHERE L2Distance(vectors, {vec: Array(Float32)}) < 1.0"
|
2023-05-25 21:16:03 +00:00
|
|
|
```
|
2023-06-05 13:13:49 +00:00
|
|
|
:::
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
**Restrictions**: Queries that contain both a `WHERE Distance(vectors, Point) < MaxDistance` and an `ORDER BY Distance(vectors, Point)`
|
|
|
|
clause cannot use ANN indexes. Also, the approximate algorithms used to determine the nearest neighbors require a limit, hence queries
|
|
|
|
without `LIMIT` clause cannot utilize ANN indexes. Also ANN indexes are only used if the query has a `LIMIT` value smaller than setting
|
|
|
|
`max_limit_for_ann_queries` (default: 1 million rows). This is a safeguard to prevent large memory allocations by external libraries for
|
|
|
|
approximate neighbor search.
|
|
|
|
|
|
|
|
**Differences to Skip Indexes** Similar to regular [skip indexes](https://clickhouse.com/docs/en/optimize/skipping-indexes), ANN indexes are
|
2023-06-13 15:13:13 +00:00
|
|
|
constructed over granules and each indexed block consists of `GRANULARITY = [N]`-many granules (`[N]` = 1 by default for normal skip
|
2023-06-08 08:10:40 +00:00
|
|
|
indexes). For example, if the primary index granularity of the table is 8192 (setting `index_granularity = 8192`) and `GRANULARITY = 2`,
|
|
|
|
then each indexed block will contain 16384 rows. However, data structures and algorithms for approximate neighborhood search (usually
|
|
|
|
provided by external libraries) are inherently row-oriented. They store a compact representation of a set of rows and also return rows for
|
|
|
|
ANN queries. This causes some rather unintuitive differences in the way ANN indexes behave compared to normal skip indexes.
|
|
|
|
|
|
|
|
When a user defines a ANN index on a column, ClickHouse internally creates a ANN "sub-index" for each index block. The sub-index is "local"
|
|
|
|
in the sense that it only knows about the rows of its containing index block. In the previous example and assuming that a column has 65536
|
|
|
|
rows, we obtain four index blocks (spanning eight granules) and a ANN sub-index for each index block. A sub-index is theoretically able to
|
|
|
|
return the rows with the N closest points within its index block directly. However, since ClickHouse loads data from disk to memory at the
|
|
|
|
granularity of granules, sub-indexes extrapolate matching rows to granule granularity. This is different from regular skip indexes which
|
|
|
|
skip data at the granularity of index blocks.
|
|
|
|
|
|
|
|
The `GRANULARITY` parameter determines how many ANN sub-indexes are created. Bigger `GRANULARITY` values mean fewer but larger ANN
|
2023-06-12 20:06:57 +00:00
|
|
|
sub-indexes, up to the point where a column (or a column's data part) has only a single sub-index. In that case, the sub-index has a
|
2023-06-13 15:17:33 +00:00
|
|
|
"global" view of all column rows and can directly return all granules of the column (part) with relevant rows (there are at most
|
2023-06-13 15:32:58 +00:00
|
|
|
`LIMIT [N]`-many such granules). In a second step, ClickHouse will load these granules and identify the actually best rows by performing a
|
2023-06-12 20:06:57 +00:00
|
|
|
brute-force distance calculation over all rows of the granules. With a small `GRANULARITY` value, each of the sub-indexes returns up to
|
|
|
|
`LIMIT N`-many granules. As a result, more granules need to be loaded and post-filtered. Note that the search accuracy is with both cases
|
|
|
|
equally good, only the processing performance differs. It is generally recommended to use a large `GRANULARITY` for ANN indexes and fall
|
|
|
|
back to a smaller `GRANULARITY` values only in case of problems like excessive memory consumption of the ANN structures. If no `GRANULARITY`
|
|
|
|
was specified for ANN indexes, the default value is 100 million.
|
2022-08-30 15:26:56 +00:00
|
|
|
|
|
|
|
|
2023-08-14 07:10:50 +00:00
|
|
|
# Available ANN Indexes {#available_ann_indexes}
|
2023-05-25 21:16:03 +00:00
|
|
|
|
2023-02-28 14:32:06 +00:00
|
|
|
- [Annoy](/docs/en/engines/table-engines/mergetree-family/annindexes.md#annoy-annoy)
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-08-15 12:00:27 +00:00
|
|
|
- [USearch](/docs/en/engines/table-engines/mergetree-family/annindexes.md#usearch-usearch)
|
|
|
|
|
2023-06-05 13:13:49 +00:00
|
|
|
## Annoy {#annoy}
|
2023-05-25 21:16:03 +00:00
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
Annoy indexes are currently experimental, to use them you first need to `SET allow_experimental_annoy_index = 1`. They are also currently
|
|
|
|
disabled on ARM due to memory safety problems with the algorithm.
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-08-17 10:03:58 +00:00
|
|
|
This type of ANN index is based on the [Annoy library](https://github.com/spotify/annoy) which recursively divides the space into random
|
|
|
|
linear surfaces (lines in 2D, planes in 3D etc.).
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
<div class='vimeo-container'>
|
2023-06-14 07:48:08 +00:00
|
|
|
<iframe src="//www.youtube.com/embed/QkCCyLW0ehU"
|
2023-06-08 08:10:40 +00:00
|
|
|
width="640"
|
|
|
|
height="360"
|
|
|
|
frameborder="0"
|
|
|
|
allow="autoplay;
|
|
|
|
fullscreen;
|
|
|
|
picture-in-picture"
|
|
|
|
allowfullscreen>
|
|
|
|
</iframe>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
Syntax to create an Annoy index over an [Array](../../../sql-reference/data-types/array.md) column:
|
2023-05-25 21:16:03 +00:00
|
|
|
|
2022-08-30 15:26:56 +00:00
|
|
|
```sql
|
2023-08-14 08:50:20 +00:00
|
|
|
CREATE TABLE table_with_annoy_index
|
2022-08-30 15:26:56 +00:00
|
|
|
(
|
|
|
|
id Int64,
|
2023-06-08 08:10:40 +00:00
|
|
|
vectors Array(Float32),
|
2023-06-13 15:13:13 +00:00
|
|
|
INDEX [ann_index_name] vectors TYPE annoy([Distance[, NumTrees]]) [GRANULARITY N]
|
2022-08-30 15:26:56 +00:00
|
|
|
)
|
|
|
|
ENGINE = MergeTree
|
|
|
|
ORDER BY id;
|
|
|
|
```
|
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
Syntax to create an ANN index over a [Tuple](../../../sql-reference/data-types/tuple.md) column:
|
2023-06-05 13:13:49 +00:00
|
|
|
|
2022-08-30 15:26:56 +00:00
|
|
|
```sql
|
2023-08-14 08:50:20 +00:00
|
|
|
CREATE TABLE table_with_annoy_index
|
2022-08-30 15:26:56 +00:00
|
|
|
(
|
|
|
|
id Int64,
|
2023-06-08 08:10:40 +00:00
|
|
|
vectors Tuple(Float32[, Float32[, ...]]),
|
2023-06-13 15:13:13 +00:00
|
|
|
INDEX [ann_index_name] vectors TYPE annoy([Distance[, NumTrees]]) [GRANULARITY N]
|
2022-08-30 15:26:56 +00:00
|
|
|
)
|
|
|
|
ENGINE = MergeTree
|
|
|
|
ORDER BY id;
|
|
|
|
```
|
|
|
|
|
2023-08-14 07:36:27 +00:00
|
|
|
Annoy currently supports two distance functions:
|
2023-08-14 07:46:15 +00:00
|
|
|
- `L2Distance`, also called Euclidean distance, is the length of a line segment between two points in Euclidean space
|
2023-08-14 07:36:27 +00:00
|
|
|
([Wikipedia](https://en.wikipedia.org/wiki/Euclidean_distance)).
|
|
|
|
- `cosineDistance`, also called cosine similarity, is the cosine of the angle between two (non-zero) vectors
|
|
|
|
([Wikipedia](https://en.wikipedia.org/wiki/Cosine_similarity)).
|
|
|
|
|
|
|
|
For normalized data, `L2Distance` is usually a better choice, otherwise `cosineDistance` is recommended to compensate for scale. If no
|
|
|
|
distance function was specified during index creation, `L2Distance` is used as default.
|
|
|
|
|
|
|
|
Parameter `NumTrees` is the number of trees which the algorithm creates (default if not specified: 100). Higher values of `NumTree` mean
|
|
|
|
more accurate search results but slower index creation / query times (approximately linearly) as well as larger index sizes.
|
2023-08-01 07:35:25 +00:00
|
|
|
|
2022-11-28 09:06:59 +00:00
|
|
|
:::note
|
2023-06-08 08:10:40 +00:00
|
|
|
Indexes over columns of type `Array` will generally work faster than indexes on `Tuple` columns. All arrays **must** have same length. Use
|
|
|
|
[CONSTRAINT](/docs/en/sql-reference/statements/create/table.md#constraints) to avoid errors. For example, `CONSTRAINT constraint_name_1
|
|
|
|
CHECK length(vectors) = 256`.
|
2022-11-28 09:06:59 +00:00
|
|
|
:::
|
|
|
|
|
2023-06-08 08:10:40 +00:00
|
|
|
Setting `annoy_index_search_k_nodes` (default: `NumTrees * LIMIT`) determines how many tree nodes are inspected during SELECTs. Larger
|
|
|
|
values mean more accurate results at the cost of longer query runtime:
|
2022-08-30 15:26:56 +00:00
|
|
|
|
2023-06-13 14:33:36 +00:00
|
|
|
```sql
|
2023-05-25 21:16:03 +00:00
|
|
|
SELECT *
|
2023-06-12 20:06:57 +00:00
|
|
|
FROM table_name
|
2023-06-08 08:10:40 +00:00
|
|
|
ORDER BY L2Distance(vectors, Point)
|
2022-08-30 15:26:56 +00:00
|
|
|
LIMIT N
|
2023-06-13 14:33:36 +00:00
|
|
|
SETTINGS annoy_index_search_k_nodes=100;
|
2022-08-30 15:26:56 +00:00
|
|
|
```
|
2023-08-18 19:58:21 +00:00
|
|
|
|
|
|
|
:::note
|
|
|
|
The Annoy index currently does not work with per-table, non-default `index_granularity` settings (see
|
|
|
|
[here](https://github.com/ClickHouse/ClickHouse/pull/51325#issuecomment-1605920475)). If necessary, the value must be changed in config.xml.
|
|
|
|
:::
|
2023-08-15 12:00:27 +00:00
|
|
|
## USearch {#usearch}
|
|
|
|
|
2023-08-18 11:45:34 +00:00
|
|
|
This type of ANN index is based on the [the USearch library](https://github.com/unum-cloud/usearch), which implements the [HNSW
|
|
|
|
algorithm](https://arxiv.org/abs/1603.09320), i.e., builds a hierarchical graph where each point represents a vector and the edges represent
|
|
|
|
similarity. Such hierarchical structures can be very efficient on large collections. They may often fetch 0.05% or less data from the
|
2023-08-18 13:01:13 +00:00
|
|
|
overall dataset, while still providing 99% recall. This is especially useful when working with high-dimensional vectors,
|
2023-08-18 11:45:34 +00:00
|
|
|
that are expensive to load and compare. The library also has several hardware-specific SIMD optimizations to accelerate further
|
|
|
|
distance computations on modern Arm (NEON and SVE) and x86 (AVX2 and AVX-512) CPUs and OS-specific optimizations to allow efficient
|
|
|
|
navigation around immutable persistent files, without loading them into RAM.
|
2023-08-17 10:03:58 +00:00
|
|
|
|
|
|
|
<div class='vimeo-container'>
|
2023-08-18 11:45:34 +00:00
|
|
|
<iframe src="//www.youtube.com/embed/UMrhB3icP9w"
|
2023-08-17 10:03:58 +00:00
|
|
|
width="640"
|
|
|
|
height="360"
|
|
|
|
frameborder="0"
|
|
|
|
allow="autoplay;
|
|
|
|
fullscreen;
|
|
|
|
picture-in-picture"
|
|
|
|
allowfullscreen>
|
|
|
|
</iframe>
|
|
|
|
</div>
|
2023-08-15 12:00:27 +00:00
|
|
|
|
|
|
|
Syntax to create an USearch index over an [Array](../../../sql-reference/data-types/array.md) column:
|
|
|
|
|
|
|
|
```sql
|
|
|
|
CREATE TABLE table_with_usearch_index
|
|
|
|
(
|
|
|
|
id Int64,
|
|
|
|
vectors Array(Float32),
|
|
|
|
INDEX [ann_index_name] vectors TYPE usearch([Distance]) [GRANULARITY N]
|
|
|
|
)
|
|
|
|
ENGINE = MergeTree
|
|
|
|
ORDER BY id;
|
|
|
|
```
|
|
|
|
|
|
|
|
Syntax to create an ANN index over a [Tuple](../../../sql-reference/data-types/tuple.md) column:
|
|
|
|
|
|
|
|
```sql
|
|
|
|
CREATE TABLE table_with_usearch_index
|
|
|
|
(
|
|
|
|
id Int64,
|
|
|
|
vectors Tuple(Float32[, Float32[, ...]]),
|
|
|
|
INDEX [ann_index_name] vectors TYPE usearch([Distance]) [GRANULARITY N]
|
|
|
|
)
|
|
|
|
ENGINE = MergeTree
|
|
|
|
ORDER BY id;
|
|
|
|
```
|
|
|
|
|
|
|
|
USearch currently supports two distance functions:
|
|
|
|
- `L2Distance`, also called Euclidean distance, is the length of a line segment between two points in Euclidean space
|
|
|
|
([Wikipedia](https://en.wikipedia.org/wiki/Euclidean_distance)).
|
|
|
|
- `cosineDistance`, also called cosine similarity, is the cosine of the angle between two (non-zero) vectors
|
|
|
|
([Wikipedia](https://en.wikipedia.org/wiki/Cosine_similarity)).
|
2023-08-16 13:31:46 +00:00
|
|
|
|
|
|
|
For normalized data, `L2Distance` is usually a better choice, otherwise `cosineDistance` is recommended to compensate for scale. If no
|
2023-08-22 08:58:29 +00:00
|
|
|
distance function was specified during index creation, `L2Distance` is used as default.
|