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
In this case, qdrant will fail to start due to permission issue. Panic occurred in file lib/storage/src/content_manager/toc/mod.rs at line 126: Can't create a directory for snapshot of xxx: Permission denied (os error 13)
I tried to set additionalVolumeMounts to /qdrant/snapshots, but we already have a default item for this, so there will be 2 volumes mounting on same path, and cause failure
The text was updated successfully, but these errors were encountered:
As of now, initContainers only update following mountpath during init step, but not for additionalVolumeMounts.
Background: I want to add an NFS for snapshot dir, and I add following configs,
`additionalVolumes:
nfs:
path: /
server: fs-xxxx.efs.eu-central-1.amazonaws.com
additionalVolumeMounts:
mountPath: "/qdrant/efs-snapshots"`
In this case, qdrant will fail to start due to permission issue.
Panic occurred in file lib/storage/src/content_manager/toc/mod.rs at line 126: Can't create a directory for snapshot of xxx: Permission denied (os error 13)
I tried to set additionalVolumeMounts to /qdrant/snapshots, but we already have a default item for this, so there will be 2 volumes mounting on same path, and cause failure
The text was updated successfully, but these errors were encountered: