edward.zeng
edward.zeng
> https://github.com/zilliztech/attu/blob/main/Dockerfile#L22 https://github.com/milvus-io/bitnami-docker-etcd/blob/3.5.0-new/3.5/debian-11/Dockerfile#L1 what about here? We don't release attu and etcd image frequently, while milvus image are building after every pr has been merged. So keep the runtime base...
@hakeedra Known issue, milvus will use environment like `MINIO_PORT` and `MINIO_HOST` over the configuration yaml file. Just deploy minio service to another namespace if not installed with milvus.
@hakeedra You should set `externalS3.host` to `minio` instead of `minio:9000`.
You can use the following restful request to change the log level to `info`: ``` curl -X PUT -H "Content-Type: application/json" localhost:9091/log/level -d '{"level": "info"}' ``` then verify the log...
@IeohMingChan So you have configured the minio.address to `172.29.3.107`?
@jhyever The `my-release-milvus` svc is generated by the helm chart which derived its name for the helm release name. Here you've installed a milvus cluster like this: `helm install my-release...
@huanghaoyuanhhy Should we add a verify check for the backup file such as collection meta file lack, data file lack or incomplete?
@pycui Could you upload the minio pod log? From the attached milvus log we can see: ``` [2024/08/29 00:13:02.226 +00:00] [WARN] [storage/remote_chunk_manager.go:152] ["failed to put object"] [bucket=milvus-bucket] [path=file/insert_log/452169028714899333/452169028714899334/452169028715099349/100/452169658882326639] [error="IO failed[key=file/insert_log/452169028714899333/452169028714899334/452169028715099349/100/452169658882326639]:...
@pycui Could you run the following command to show your minio cluster info: ``` mc admin info ``` Read more for `mc` command from: https://min.io/docs/minio/linux/reference/minio-mc.html
@pycui Have you enable the metrics scrape for minio pod? If so, you can query the metric like this to find available disk size for minio cluster: ``` minio_node_disk_free_bytes{disk="/export"} ```...