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: docs/docs/ops/targets.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,11 +63,16 @@ Here's how CocoIndex data elements map to Qdrant elements during export:
63
63
| a collected row | a point |
64
64
| a field | a named vector, if fits into Qdrant vector; or a field within payload otherwise |
65
65
66
-
*Vector[Float32, N]*, *Vector[Float64, N]* and *Vector[Int64, N]* types fit into Qdrant vector.
66
+
The following vector types fit into Qdrant vector:
67
+
* One-dimensional vectors with fixed dimension, e.g. *Vector[Float32, N]*, *Vector[Float64, N]* and *Vector[Int64, N]*.
68
+
We map them to [dense vectors](https://qdrant.tech/documentation/concepts/vectors/#dense-vectors).
69
+
* Two-dimensional vectors whose inner layer is a one-dimensional vector with fixed dimension, e.g. *Vector[Vector[Float32, N]]*, *Vector[Vector[Int64, N]]*, *Vector[Vector[Float64, N]]*. The outer layer may or may not have a fixed dimension.
70
+
We map them to [multivectors](https://qdrant.tech/documentation/concepts/vectors/#multivectors).
71
+
67
72
68
73
:::warning vector type mapping to Qdrant
69
74
70
-
Since vectors in Qdrant must have fixed dimension, we only map vectors of number types with fixed dimension (i.e. *Vector[cocoindex.Float32, N]*, *Vector[cocoindex.Float64, N]*, and *Vector[cocoindex.Int64, N]*) to Qdrant vectors.
75
+
Since vectors in Qdrant must have fixed dimension, we only map vectors of number types with fixed dimension to Qdrant vectors.
71
76
For all other vector types, we map to Qdrant payload as JSON arrays.
0 commit comments