Search index not persistent #37
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
kahliburke/Kaimon.jl#37
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I have multiple search indices because my software consists of multiple packages.
I can index them, but after a reboot, they are no longer indexed.
Why?
I start the database with:
Indexing all of them takes more than 30 min. I cannot do that after every reboot.
I found a solution. Run the following script once:
The documentation should be updated accordingly.
@ufechner7 thanks for the report. I'll look at changes to the docs to highlight this.
Improved the search docs for 2.0 — the quickstart now mounts a persistent volume:
That
-v qdrant_storage:/qdrant/storagewas the missing piece. Without a volume, Qdrant keeps everything in the container's ephemeral filesystem, so the collections are lost on reboot / container-recreate and every project would need re-indexing. With the volume, the index persists. (installation.mdalready had it; thesearch.mdquickstart was the bare one — now fixed.)