You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to use WSL2 under Windows for setting up my Qdrant instance with an external disk as storage.
I tried all possible combinations of using Powershell/cmd/Ubuntu (WSL-shell) with these commands but without success. Qdrant always falls back on my internal C drive. Note that the drive is properly mounted and I can cd into it.
docker run -p 6333:6333 -v $(pwd)/qdrant_storage:/qdrant/storage:z qdrant/qdrant
docker run -p 6333:6333 -v ./qdrant_storage:/qdrant/storage:z qdrant/qdrant
docker run -p 6333:6333 -v /mnt/d/qdrant_storage:/qdrant/storage:z qdrant/qdrant
docker run -p 6333:6333 -v D:/qdrant_storage:/qdrant/storage:z qdrant/qdrant
Only the latter command
docker run -p 6333:6333 -v D:/qdrant_storage:/qdrant/storage:z qdrant/qdrant
actually created the qdrant_storage directory. However, when I create a collection afterwards in Python and add points, nothing shows up in the directory. Instead, I can see that Qdrant falls back to using C-Drive.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'd like to use WSL2 under Windows for setting up my Qdrant instance with an external disk as storage.
I tried all possible combinations of using Powershell/cmd/Ubuntu (WSL-shell) with these commands but without success. Qdrant always falls back on my internal C drive. Note that the drive is properly mounted and I can cd into it.
Only the latter command
docker run -p 6333:6333 -v D:/qdrant_storage:/qdrant/storage:z qdrant/qdrant
actually created the
qdrant_storage
directory. However, when I create a collection afterwards in Python and add points, nothing shows up in the directory. Instead, I can see that Qdrant falls back to using C-Drive.I guess it's some particular Windows problem as it worked absolutely fine for me on a Ubuntu machine. Does anyone have a workaround maybe?
Beta Was this translation helpful? Give feedback.
All reactions