Closed NamNX1409 closed 2 months ago
@NamNX1409 how did you config/deploy your minio, it seems not working _2024-09-06 11:33:20 [2024/09/06 04:33:20.064 +00:00] [WARN] [retry/retry.go:46] ["retry func failed"] [retried=0] [error="failed to write files/insert_log/452337435696709883/452337435696709884/452337435696909953/102/452354935055712590: IO failed[key=files/insertlog/452337435696709883/452337435696709884/452337435696909953/102/452354935055712590]: Resource requested is unreadable, please reduce your request rate"]
/assign @NamNX1409 /unassign
Here is my docker-compose.yml file:
version: '3.5'
services: etcd: container_name: milvus-etcd image: quay.io/coreos/etcd:v3.5.5 environment:
${DOCKER_VOLUME_DIRECTORY:-.}/volumes/etcd:/etcd command: etcd -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd healthcheck: test: [ "CMD", "etcdctl", "endpoint", "health" ] interval: 30s timeout: 20s retries: 3
minio: container_name: milvus-minio image: minio/minio:RELEASE.2023-03-20T20-16-18Z environment: MINIO_ACCESS_KEY: minioadmin MINIO_SECRET_KEY: minioadmin ports:
${DOCKER_VOLUME_DIRECTORY:-.}/volumes/minio:/minio_data command: minio server /minio_data --console-address ":9001" healthcheck: test: [ "CMD", "curl", "-f", "http://localhost:9000/minio/health/live" ] interval: 30s timeout: 20s retries: 3
standalone: container_name: milvus-standalone image: milvusdb/milvus:v2.4.10 command: [ "milvus", "run", "standalone" ] security_opt:
networks: default: name: milvus
I just followed the instructions and didn't change anything.
/assign @yanliang567
Hi, @NamNX1409. The minio service may be unhealthy. Please check the minio log, this issue is similar to https://github.com/minio/minio/discussions/16341.
Hi, @jaime0815. Thanks for the advice. When I check with docker compose ps -a
, the status still shows as "healthy" (as seen in the picture below). However, when I check the MinIO log, it says: Waiting for all MinIO sub-systems to be initialized.. possible cause (Unable to initialize config system: migrateConfigToMinioSys: Storage resources are insufficient for the write operation .minio.sys/config/config.json). I also can't find the config.json file
(to be exact, there's nothing in the config folder).
Here is my minio log: minio.log
Is there enough disk space for MinIO?
/assign @LoveEachDay any ideas?
Storage resources are insufficient for the write operation
There was something wrong with my MinIO settings, but I’ve solved it. Thanks, everyone!
Is there an existing issue for this?
Environment
Current Behavior
container milvus-standalone automatically exits after I insert data to a collection.
Expected Behavior
No response
Steps To Reproduce
No response
Milvus Log
milvus.log
Anything else?
No response