I have a qdrant that is deployed in a docker container in the azure app service. Data from qdrant collections is saved in the docker container itself – this is the main problem, because when the application is restarted, all the data that was in the container disappears. I need to save data in a separate storage, preferably a blob/file share. I’m not considering the possibility of deploying qdrant in Kubernetes and container instance
I tried to specify the path to save the data in the azure application configurations, different paths where azure saves the data, but nothing came of it. I also tried to do this using the qdrant docker configuration, but nothing came of it either.
2
Answers
What are the logs saying in regard to your issue? You might want to increase the log level in your config.yml.
This is how I would approach this (disclaimer: not tested):
config.yaml:
To save data from Qdrant to Azure Blob Storage or File Share Storage, follow these steps:
This will save data from Qdrant to Azure File Share Storage.