milvus auto index #42852
-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
For open-source milvus, the AUTOINDEX default parameters can be configured in the default milvus.yaml.
So, if you want to change the parameters of AUTOINDEX, you can add these lines at the end of milvus.yaml:
In most of cases, no need to reset its parameters. For Zilliz Cloud, the AUTOINDEX setting is not publicly available. The index used for AUTOINDEX is also different from open-source Milvus. |
Beta Was this translation helpful? Give feedback.
For open-source milvus, the AUTOINDEX default parameters can be configured in the default milvus.yaml.
The relevant code shows that for FloatVector, AUTOINDEX is actually HNSW, and the parameters are configured by autoIndex.params.build:
milvus/pkg/util/paramtable/autoindex_param.go
So, if you want to change the parameters of AUTOINDEX, you can add these lines at the end of milvus.yaml:
In most of cases, no need to reset its parameters.
For Zilliz Cloud, the AUTOINDEX setting is not publicly avai…