(!)ERROR:: failed to get client address [error="find no available rootcoord, check rootcoord state" #49477
Unanswered
Zy1bREAd
asked this question in
Q&A and General discussion
Replies: 1 comment 2 replies
-
Seems the remote storage is not correctly configured, it still trying to connect the local minio by this address "http://localhost:9000/a-bucket". To configure the remote object storage, you need to override the milvus.yaml in the docker-compose.yaml. And then modify the ${DOCKER_VOLUME_DIRECTORY:-.}/milvus.yaml to configure your remote object storage. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Version: 2.5.27
docker-compose deploy
no local minio, OSS is Tencent COS, but start Milvus occur error.
rootcoord is not running, I think about Tencent COS Config,Pleases Check!!!
milvus.yaml (core config)
The Tencent COS region is bangkok,milvus-backup is OK!
Tips: Except for the changes made to the COS configuration, all others are set to the default values.
`
minio:
address: cos.ap-bangkok.myqcloud.com
port: 443 # Port of MinIO or S3 service.
accessKeyID: "XXXXX"
secretAccessKey: "XXXXX"
useSSL: false
ssl:
tlsCACert: /path/to/public.crt
bucketName: prod-intl-milvus-xxxx
rootPath: prod-data
region: ap-bangkok
`
docker-compose.yaml:
`
version: '3.5'
services:
etcd:
container_name: milvus-etcd
image: quay.io/coreos/etcd:v3.5.18
environment:
- ETCD_AUTO_COMPACTION_MODE=revision
- ETCD_AUTO_COMPACTION_RETENTION=1000
- ETCD_QUOTA_BACKEND_BYTES=4294967296
- ETCD_SNAPSHOT_COUNT=50000
volumes:
- /data/milvus/etcd:/etcd
command: etcd -advertise-client-urls=http://etcd: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:
standalone:
container_name: milvus-standalone
image: milvusdb/milvus:v2.5.27
command: ["milvus", "run", "standalone"]
security_opt:
- seccomp:unconfined
environment:
etcd_endpoints: etcd:2379
#minio_address: minio:9000
volumes:
- /data/milvus/milvus:/var/lib/milvus
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9091/healthz"]
interval: 30s
start_period: 90s
timeout: 20s
retries: 3
ports:
- "29530:19530"
- "29091:9091"
depends_on:
- "etcd"
networks:
default:
name: milvus
`
docker-compose logs file output:
debug_milvus_tencent_cos.log
Beta Was this translation helpful? Give feedback.
All reactions