chroma
chroma copied to clipboard
[Bug]: Crash and retreat (崩溃,闪退)
What happened?
持久化二十个本地向量数据库,然后实例化二十个Chroma,并发同时调用similarity_search_with_score,就出现的(崩溃,闪退)
Persist 20 local vector databases, then instantiate 20 Chromas, and call similarity_search_with_score at the same time.
Versions
Chromadb-0.5.5
Relevant log output
for iteration, text in enumerate(response_list):
if 0 <= iteration < 6:
t = text
# 记录 泛化后的问题
if t:
logger_gpt.info(f" {conversion_name} get_vectordb_docs檢索問題:“{t}”")
# 是不是檢索產品庫
product_result.append(
self.executor.submit(
product_docsearchs[iteration].similarity_search_with_score,
query=t, k=2))
script_result.append(
self.executor.submit(
script_docsearchs[iteration].similarity_search_with_score,
query=t, k=2))