Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5bc7937

Browse files
committed
Added iterative index scans to troubleshooting docs [skip ci]
1 parente7e899e commit5bc7937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ ALTER TABLE items ALTER COLUMN embedding SET STORAGE PLAIN;
937937

938938
####Why are there less results for a query after adding an HNSW index?
939939

940-
Results are limited by the size of the dynamic candidate list (`hnsw.ef_search`). There may be even less results due to dead tuples or filtering conditions in the query.We recommend setting`hnsw.ef_search` to at least twice the`LIMIT` of the query. If you need more than 500 results, use an IVFFlat index instead.
940+
Results are limited by the size of the dynamic candidate list (`hnsw.ef_search`), which is 40 by default. There may be even less results due to dead tuples or filtering conditions in the query.Enabling[iterative index scans](#iterative-index-scans) can help address this.
941941

942942
Also, note that`NULL` vectors are not indexed (as well as zero vectors for cosine distance).
943943

@@ -949,7 +949,7 @@ The index was likely created with too little data for the number of lists. Drop
949949
DROPINDEX index_name;
950950
```
951951

952-
Results can also be limited by the number of probes (`ivfflat.probes`).
952+
Results can also be limited by the number of probes (`ivfflat.probes`). Enabling[iterative index scans](#iterative-index-scans) can address this.
953953

954954
Also, note that`NULL` vectors are not indexed (as well as zero vectors for cosine distance).
955955

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp