How are int8 and int16 scalar fields stored in Milvus?
In the Milvus schema.proto, it appears that scalar fields can only be of types BoolArray, IntArray, LongArray, FloatArray, DoubleArray, StringArray, BytesArray, ArrayArray, and JSONArray. While Milvus supports Int8 and Int16 types, it seems these are represented as IntArray. How does Milvus manage the storage of int8 and int16 types within an int32 slice?
Why is DISKANN index type not supported on DataType.FLOAT_VECTOR with IP metric?
I’m attempting to build an index using the DiskANN type, but I’m encountering an error stating that the index type is not supported. Here is my schema. I’m confused because it’s based on a float vector with the inner product (IP) metric, and according to the Milvus documentation https://milvus.io/docs/disk_index.md, this should be supported. Could someone explain why this might be happening?
Inconsistent Query Results Based on Output Fields Selection in Milvus Dashboard
I’m experiencing an issue with the Milvus dashboard where the search results change based on the selected output fields.
Unable to integrate milvus to spring boot application
I am trying to integrate Milvus with my Spring Boot Application but I am getting status 500: Internal Server error as soon as I create a milvus client.
This is the code I am writing :
Where is the code that reads configurations like ETCD_ENDPOINTS from the environment?
Milvus is capable of reading some of it’s configuration parameters from environment variables. For instance, the configurations etcd.endpoints, minio.address and minio.port can instead be set using the environment variables ETCD_ENDPOINTS and MINIO_ADDRESS.
Milvus backup tool is failing
I am using the latest version of Milvus Backup. When attempting to back up the entire Milvus cluster, the process only backs up a few collections before getting stuck with the following error. Additionally, the meta directory is not created in the bucket.
Why do I get a DataNotMatchException?
I’m using Milvus 2.4.1 on Docker desktop and Python 3.11.7 on Windows. I want to add data to Milvus but I get the following Exception:
Multivector hybridsearch function is not working
I followed the documentation:https://milvus.io/docs/multi-vector-search.md to perform a multivector hybrid search, but I encountered an error when performing Step 3: Perform a Hybrid Search.