admin管理员组

文章数量:1128534

I am working on a RAG task and storing data in Chroma DB with persistent storage in SQLite. I successfully created the database, inserted data, and performed similarity searches in the vector DB.

However, when I moved the Chroma DB from one system to another, I couldn't perform similarity searches on the new system. I simply copied the database folder from the source system to the destination system, connected to it, and tried performing a similarity search. When I checked the collection count on the destination system, it returned the correct result, but the similarity search failed.

Could this be due to a package version issue? I have tried using both chroma-hnswlib==0.7.6 with chromadb==0.5.23 and chroma-hnswlib==0.7.3 with chromadb==0.5.0.

Can anyone please help me resolve this?

本文标签: sqliteMove Chroma DB to another machineStack Overflow