You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: proto/collections.proto
+13-11Lines changed: 13 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@ package qdrant;
4
4
messageVectorParams {
5
5
uint64size=1; // Size of the vectors
6
6
Distancedistance=2; // Distance function used for comparing vectors
7
+
optionalHnswConfigDiffhnsw_config=3; // Configuration of vector HNSW graph. If omitted - the collection configuration will be used
8
+
optionalQuantizationConfigquantization_config=4; // Configuration of vector quantization config. If omitted - the collection configuration will be used
7
9
}
8
10
9
11
messageVectorParamsMap {
@@ -77,22 +79,22 @@ message HnswConfigDiff {
77
79
*/
78
80
optionaluint64m=1;
79
81
/*
80
-
Number of neighbours to consider during the index building. Larger the value - more accurate the search, more time required to build index.
82
+
Number of neighbours to consider during the index building. Larger the value - more accurate the search, more time required to build the index.
81
83
*/
82
84
optionaluint64ef_construct=2;
83
85
/*
84
86
Minimal size (in KiloBytes) of vectors for additional payload-based indexing.
85
-
If payload chunk is smaller than `full_scan_threshold` additional indexing won't be used -
87
+
If the payload chunk is smaller than `full_scan_threshold` additional indexing won't be used -
86
88
in this case full-scan search should be preferred by query planner and additional indexing is not required.
87
-
Note: 1Kb = 1 vector of size 256
89
+
Note: 1 Kb = 1 vector of size 256
88
90
*/
89
91
optionaluint64full_scan_threshold=3;
90
92
/*
91
93
Number of parallel threads used for background index building. If 0 - auto selection.
92
94
*/
93
95
optionaluint64max_indexing_threads=4;
94
96
/*
95
-
Store HNSW index on disk. If set to false, index will be stored in RAM.
97
+
Store HNSW index on disk. If set to false, the index will be stored in RAM.
0 commit comments