Where is data stored #20095
-
Where is data for the inserted embeddings stored with the standalone version of Milvus? Looking at the default Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
The standalone docker-compose file is: In this yml file, you can see the configuration of minio:
The "volumes" defines the storage path. After you start the standalone server by docker-compose up -d, you will see a folder "volumes" created under the path where you run the command. All the data files are stored in the ./volumes/minio |
Beta Was this translation helpful? Give feedback.
-
I see this statement from https://milvus.io/docs/product_faq.md
That is to say, milvus doesn't have its own storage engine, it just use external storage service to store all data except metadata ? @yhmo |
Beta Was this translation helpful? Give feedback.
The standalone docker-compose file is:
wget https://github.com/milvus-io/milvus/releases/download/v2.1.4/milvus-standalone-docker-compose.yml -O docker-compose.yml
In this yml file, you can see the configuration of minio:
The "volumes" defines the storage path. After you start the standalone server by docker-compose up -d, you will see a folder "volumes" created under the path where you run the command. All the data files are stored in …