we are using milvus with the default configurations for CPU deployment, wit every new record ingested into milvus we were rebuilding the index inside milvus for this collection however we have seen an increase in time needed to build the index ( when records in single workspace reached about 150K ) that went around half a minute
so we removed building the index manually to letting milvus rebuild based on index_file_size
but there was something off right there as searching in another workspace which was indexed properly before disabling manuall indexing became much slower than before
so my questions are ?
- can index in a workspace be affected by non indexed workpsace ?
- why inserting and building the index take this very long time ?
- how to choose the perfect
index_file_size
? do you have any suggestions in general working withcpu
milvus in production ?