qdrant: qdrant_client-1.6.9: "Can't init WAL" when creating simple collection
I’m getting error processing request: Can't init WAL: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
just by trying to create a new collection as suggested on the docs
I’m just doing client.create_collection("2db5aa02", vectors_config)
where vectors_config
is models.VectorParams(size=100, distance=models.Distance.COSINE)
.
Using qdrant_client-1.6.9
and using locally docker.io/qdrant/qdrant:latest
About this issue
- Original URL
- State: open
- Created 7 months ago
- Comments: 23 (10 by maintainers)
@mfirry Happy to help! This has been an interesting learning experience for me as well. For the record,
rootful
shouldn’t be necessary, I just double-checked locally and justapplehv + privileged
works. I assume it has something to do with the way user namespaces are implemented on macOS (or the lack thereof).Ok. thanks @timvisee for the help.
the solution suggested by @T1T4N actually makes it work. not sure why these things are needed to be honest (
applehv
,rootful
andprivileged
) but it does work now. thanksHi @mfirry
Not yet 😦 will try to do it at the weekends