Deploy
# [Member]
# Unique node name
name: "milvus-test-btxdkfxhclwm-etcd-1"
# Data storage directory
data-dir: "/mnt/data/etcd"
# Inter-cluster communication listening address
listen-peer-urls: "http://0.0.0.0:9054"
# Client access listening address
listen-client-urls: "http://0.0.0.0:6054"
# Exposed address for inter-cluster communication
initial-advertise-peer-urls: "http://172.17.39.182:9054"
# Exposed address for client access
advertise-client-urls: "http://172.17.39.182:6054"
# Disable v2 version (Boolean)
enable-v2: false
# Log configuration
log-level: "info"
log-outputs: ["/home/vdb/log/etcd.log"]
# Snapshot and WAL management
max-snapshots: 5
max-wals: 5
# [Clustering]
# Peer addresses of all nodes in the cluster
initial-cluster: "milvus-test-btxdkfxhclwm-etcd-1=http://172.17.39.182:9054,milvus-test-btxdkfxhclwm-etcd-2=http://172.17.40.139:9054,milvus-test-btxdkfxhclwm-etcd-3=http://172.17.39.183:9054"
# Unique token for the cluster
initial-cluster-token: "milvus-test-btxdkfxhclwm"
# Cluster state (new/existing)
initial-cluster-state: "new"
# Heartbeat and Election timeout (Integers)
heartbeat-interval: 1000
election-timeout: 100001 配置模板
2 查看状态
2.1 health
2.2 status
2.3 读写
Last updated