Find answers from the community

Updated 3 months ago

Milvus

At a glance

The community member is asking how to load the index from the "milvus_local.db" file in Milvus. They provide an example of using the ChromaDB library, where they create a PersistentClient and a collection. Another community member suggests that the community member can simply point the MilvusVectorStore to an existing database, and that it should check if the database is already created.

Hi , can someone tell me how to load the index from "milvus_local.db" in milvus,? for example I am using below function in chromadb
Plain Text
 db = chromadb.PersistentClient(path="./chroma_db_mini")
chroma_collection = db.get_or_create_collection("quickstart")
vector_store = ChromaVectorStore(chroma_collection=chroma_collection) 
L
1 comment
Just point MilvusVectorStore to an existing db no? I think it already checks if the db is created or not
Add a reply
Sign up and join the conversation on Discord