Skip to content

Commit 1253e9c

Browse files
committed
Fixes links
1 parent 317c459 commit 1253e9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

solutions/search/vector/dense-vector.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ BBQ currently supports two vector search algorithms, each suited to different sc
4545

4646
#### `bbq_hnsw` [bbq-hnsw]
4747

48-
When you set a dense vector field’s `index_type` to `bbq_hnsw`, Elasticsearch uses the HNSW algorithm for fast [kNN search](/solutions/search/vector/knn) on compressed vectors. With the default [oversampling](#bbq-oversampling) applied, it delivers better cost efficiency, lower latency, and improved relevance ranking, making it the best choice for large-scale similarity search.
48+
When you set a dense vector field’s `index_type` to `bbq_hnsw`, Elasticsearch uses the HNSW algorithm for fast [kNN search](https://www.elastic.co/docs//solutions/search/vector/knn) on compressed vectors. With the default [oversampling](#bbq-oversampling) applied, it delivers better cost efficiency, lower latency, and improved relevance ranking, making it the best choice for large-scale similarity search.
4949

5050
:::{note}
5151
Starting in version 9.1, `bbq_hnsw` is the default indexing method for new `dense_vector` fields, so you don’t need to specify it explicitly when creating an index.
@@ -172,14 +172,14 @@ GET bbq-index/_search
172172
By default, oversampling is set to 3×, meaning if you request k:10, Elasticsearch retrieves 30 candidates for re-ranking. You don’t need to configure this behavior; it’s applied automatically for BBQ searches.
173173

174174
:::{note}
175-
You can change oversampling from the default 3× to another value. Refer to [Oversampling and rescoring for quantized vectors](/solutions/search/vector/knn#dense-vector-knn-search-rescoring) for details.
175+
You can change oversampling from the default 3× to another value. Refer to [Oversampling and rescoring for quantized vectors](https://www.elastic.co/docs/solutions/search/vector/knn#dense-vector-knn-search-rescoring) for details.
176176
:::
177177

178178
### Learn more [bbq-learn-more]
179179

180180
- [Better Binary Quantization (BBQ) in Lucene and Elasticsearch](https://www.elastic.co/search-labs/blog/better-binary-quantization-lucene-elasticsearch) - Learn how BBQ works, its benefits, and how it reduces memory usage while preserving search accuracy.
181181
- [Dense vector field type](https://www.elastic.co/docs/reference/elasticsearch/mapping-reference/dense-vector) - Find code examples for using `bbq_hnsw` `index_type`.
182-
- [kNN search](/solutions/search/vector/knn) - Learn about the search algorithm that BBQ works with.
182+
- [kNN search](https://www.elastic.co/docs/solutions/search/vector/knn) - Learn about the search algorithm that BBQ works with.
183183

184184

185185

0 commit comments

Comments
 (0)