Tomasz

Results 5 comments of Tomasz

Same issue on chromium. Updating chromium did not fix the issue.

https://pastebin.com/asGCLDQ9 https://pastebin.com/QzA5G0Ni

90% of operations is retrieval from the base, although i don't log that kind of data. Is there a way to auto-restart upon panic? @tazarov Additionally i upped the version...

@itaismith ```CHROMA_HOST = os.environ.get("CHROMA_HOST", "gengpt-chroma") CHROMA_PORT = os.environ.get("CHROMA_PORT", "8000") CHROMA_URL = f"http://{CHROMA_HOST}:{CHROMA_PORT}" CHROMA_CLIENT = HttpClient(host=CHROMA_URL)``` def list_files_in_collection(collection_name): try: collection = CHROMA_CLIENT.get_or_create_collection(name=collection_name) results = collection.get(include=["metadatas"]) metadatas = results["metadatas"] file_paths = [meta.get("file_path")...

@AccsoAndreBuesgen until chroma devs fix the issue, the only band-aid solution i found is restarting the container whenever it panics, by monitoring the logs and on panic restarting the container....