Skip to content

[Bug]: centos docker compose deploy, milvus-standalone always exited #43070

@levin8023

Description

@levin8023

Is there an existing issue for this?

  • I have searched the existing issues

Environment

- Milvus version: 
 quay.io/coreos/etcd:v3.5.18
 minio/minio:RELEASE.2023-03-20T20-16-18Z
 milvusdb/milvus:v2.6.0-rc1
- Deployment mode(standalone or cluster): standalone
- MQ type(rocksmq, pulsar or kafka): none
- SDK version(e.g. pymilvus v2.0.0rc2): 2.6.0b0
- OS(Ubuntu or CentOS): CentOS
- CPU/Memory: 
Architecture:        x86_64
CPU op-mode(s):      32-bit, 64-bit
Byte Order:          Little Endian
CPU(s):              32
On-line CPU(s) list: 0-31
Thread(s) per core:  2
Core(s) per socket:  8
Socket(s):           2
NUMA node(s):        2
Vendor ID:           GenuineIntel
BIOS Vendor ID:      Intel
CPU family:          6
Model:               79
Model name:          Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz
BIOS Model name:     Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz
Stepping:            1
CPU MHz:             3000.000
CPU max MHz:         3000.0000
CPU min MHz:         1200.0000
BogoMIPS:            4199.71
Virtualization:      VT-x
L1d cache:           32K
L1i cache:           32K
L2 cache:            256K
L3 cache:            20480K
NUMA node0 CPU(s):   0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30
NUMA node1 CPU(s):   1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31
Flags:               fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm rdt_a rdseed adx smap intel_pt xsaveopt cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts
- GPU: 

- Others: 
- Docker version: 
Client: Docker Engine - Community
 Version:           26.1.3
 API version:       1.45
 Go version:        go1.21.10
 Git commit:        b72abbb
 Built:             Thu May 16 08:34:39 2024
 OS/Arch:           linux/amd64
 Context:           default

Server: Docker Engine - Community
 Engine:
  Version:          26.1.3
  API version:      1.45 (minimum version 1.24)
  Go version:       go1.21.10
  Git commit:       8e96db1
  Built:            Thu May 16 08:33:34 2024
  OS/Arch:          linux/amd64
  Experimental:     false
 containerd:
  Version:          1.6.32
  GitCommit:        8b3b7ca2e5ce38e8f31a34f35b2b68ceb8470d89
 runc:
  Version:          1.1.12
  GitCommit:        v1.1.12-0-g51d5e94
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0

Current Behavior

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:
- ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/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:
container_name: milvus-minio
image: minio/minio:RELEASE.2023-03-20T20-16-18Z
environment:
MINIO_ACCESS_KEY: minioadmin
MINIO_SECRET_KEY: minioadmin
ports:
- "9001:9001"
- "9000:9000"
volumes:
- ${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.6.0-rc1
command: ["milvus", "run", "standalone"]
security_opt:
- seccomp:unconfined
environment:
ETCD_ENDPOINTS: etcd:2379
MINIO_ADDRESS: minio:9000
MQ_TYPE: woodpecker
volumes:
- ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/milvus:/var/lib/milvus
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9091/healthz"]
interval: 30s
start_period: 90s
timeout: 20s
retries: 3
ports:
- "19530:19530"
- "9091:9091"
depends_on:
- "etcd"
- "minio"

networks:
default:
name: milvus

Expected Behavior

No response

Steps To Reproduce

Milvus Log

[2025/07/02 05:52:54.447 +00:00] [INFO] [mixcoord/service.go:249] ["MixCoord Core start ..."]
[2025/07/02 05:52:54.450 +00:00] [INFO] [balancer/balancer_impl.go:329] ["start to balance"] [module=streamingcoord] [component=balancer] [policy=vchannelFair]
[2025/07/02 05:52:54.450 +00:00] [INFO] [balancer/balancer_impl.go:332] ["collect all status..."] [module=streamingcoord] [component=balancer] [policy=vchannelFair]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_0] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_8] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_1] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_2] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_13] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_6] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_12] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_7] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_4] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_11] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_9] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_14] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.450 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_5] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.451 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_15] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.451 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_10] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.451 +00:00] [WARN] [balancer/balancer_impl.go:419] ["channel is not assigned to any server"] [channel=by-dev-rootcoord-dml_3] [term=1] [serverID=0] [state=PCHANNEL_META_STATE_UNINITIALIZED]
[2025/07/02 05:52:54.451 +00:00] [WARN] [balancer/balancer_impl.go:203] ["fail to apply balance, start a backoff..."] [module=streamingcoord] [component=balancer] [policy=vchannelFair] [error="fail to balance: no available streaming node"] [errorVerbose="fail to balance: no available streaming node\n(1) attached stack trace\n -- stack trace:\n | github.com/milvus-io/milvus/internal/streamingcoord/server/balancer.(*balancerImpl).balance\n | \t/workspace/source/internal/streamingcoord/server/balancer/balancer_impl.go:346\n | [...repeated from below...]\nWraps: (2) fail to balance\nWraps: (3) attached stack trace\n -- stack trace:\n | github.com/milvus-io/milvus/internal/streamingcoord/server/balancer/policy/vchannelfair.(*policy).Balance\n | \t/workspace/source/internal/streamingcoord/server/balancer/policy/vchannelfair/vchannel_fair_policy.go:33\n | github.com/milvus-io/milvus/internal/streamingcoord/server/balancer.(*balancerImpl).balance\n | \t/workspace/source/internal/streamingcoord/server/balancer/balancer_impl.go:344\n | github.com/milvus-io/milvus/internal/streamingcoord/server/balancer.(*balancerImpl).balanceUntilNoChanged\n | \t/workspace/source/internal/streamingcoord/server/balancer/balancer_impl.go:315\n | github.com/milvus-io/milvus/internal/streamingcoord/server/balancer.(*balancerImpl).execute\n | \t/workspace/source/internal/streamingcoord/server/balancer/balancer_impl.go:198\n | runtime.goexit\n | \t/usr/local/go/src/runtime/asm_amd64.s:1700\nWraps: (4) no available streaming node\nError types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *withstack.withStack (4) *errutil.leafError"]
[2025/07/02 05:52:54.451 +00:00] [INFO] [balancer/balancer_impl.go:172] ["balance wait"] [module=streamingcoord] [component=balancer] [policy=vchannelFair] [nextBalanceInterval=202.922344ms]
[2025/07/02 05:52:54.453 +00:00] [INFO] [sessionutil/session_util.go:506] ["put session key into etcd"] [key=by-dev/meta/session/mixcoord] [value="{"ServerID":4,"ServerName":"mixcoord","Address":"172.21.0.4:53100","Exclusive":true,"TriggerKill":true,"Version":"2.6.0-rc.1","IndexEngineVersion":{},"ScalarIndexEngineVersion":{},"LeaseID":7587887839481911606,"HostName":"fe274fd7d7aa"}"]
[2025/07/02 05:52:54.453 +00:00] [INFO] [sessionutil/session_util.go:516] ["Service registered successfully"] [ServerName=mixcoord] [serverID=4]
[2025/07/02 05:52:54.453 +00:00] [INFO] [coordinator/mix_coord.go:105] ["MixCoord Register Finished"]
[2025/07/02 05:52:54.453 +00:00] [INFO] [mixcoord/service.go:122] ["MixCoord start done ..."]
[2025/07/02 05:52:54.453 +00:00] [INFO] [components/mix_coord.go:62] ["MixCoord successfully started"]
[2025/07/02 05:52:54.460 +00:00] [INFO] [discoverer/session_discoverer.go:110] ["new server modification"] [prefix=by-dev/meta/session/mixcoord] [exclusive=true] [semver=">=2.6.0-dev"] [event=PUT] [sessionKey=by-dev/meta/session/mixcoord] [sessionValue="{"ServerID":4,"ServerName":"mixcoord","Address":"172.21.0.4:53100","Exclusive":true,"TriggerKill":true,"Version":"2.6.0-rc.1","IndexEngineVersion":{},"ScalarIndexEngineVersion":{},"LeaseID":7587887839481911606,"HostName":"fe274fd7d7aa"}"]
[2025/07/02 05:52:54.460 +00:00] [INFO] [resolver/resolver_with_discoverer.go:189] ["service discover update, update resolver"] [component=grpc-resolver] [scheme=milvus-session] [role=by-dev/meta/session/mixcoord] [exclusive=true] [state="{"Version":48,"State":{"Addresses":[{"Addr":"172.21.0.4:53100","ServerName":"","Attributes":{"<%!p(attributes.attributesKeyType=0)>": "<%!p(int64=4)>" },"BalancerAttributes":{"<%!p(attributes.attributesKeyType=2)>": "<0xc001923680>" , "<%!p(attributes.attributesKeyType=0)>": "<%!p(int64=4)>" },"Metadata":null}],"Endpoints":null,"ServiceConfig":null,"Attributes":null}}"] [resolver_count=1]
[2025/07/02 05:52:54.460 +00:00] [INFO] [resolver/watch_based_grpc_resolver.go:57] ["update resolver state success"] [component=grpc-resolver] [scheme=milvus-session] [role=by-dev/meta/session/mixcoord] [exclusive=true] [id=1] [state="{"Addresses":[{"Addr":"172.21.0.4:53100","ServerName":"","Attributes":{"<%!p(attributes.attributesKeyType=0)>": "<%!p(int64=4)>" },"BalancerAttributes":{"<%!p(attributes.attributesKeyType=2)>": "<0xc001923680>" , "<%!p(attributes.attributesKeyType=0)>": "<%!p(int64=4)>" },"Metadata":null}],"Endpoints":null,"ServiceConfig":null,"Attributes":null}"]
[2025/07/02 05:52:54.460 +00:00] [INFO] [resolver/resolver_with_discoverer.go:199] ["update resolver done"] [component=grpc-resolver] [scheme=milvus-session] [role=by-dev/meta/session/mixcoord] [exclusive=true]
[2025/07/02 05:52:54.461 +00:00] [INFO] [assignment/assignment_impl.go:136] ["swap assignment discover client"]
[2025/07/02 05:52:54.461 +00:00] [INFO] [assignment/assignment_impl.go:140] ["old assignment discover client closed"]
[2025/07/02 05:52:54.462 +00:00] [INFO] [resolver/resolver_with_discoverer.go:189] ["service discover update, update resolver"] [component=grpc-resolver] [scheme=channel-assignment] [state="{"Version":{"Global":4,"Local":0},"State":{"Addresses":[],"Endpoints":null,"ServiceConfig":null,"Attributes":null}}"] [resolver_count=1]
[2025/07/02 05:52:54.462 +00:00] [WARN] [resolver/watch_based_grpc_resolver.go:54] ["fail to update resolver state"] [component=grpc-resolver] [scheme=channel-assignment] [id=2] [state="{"Addresses":[],"Endpoints":null,"ServiceConfig":null,"Attributes":null}"] [error="bad resolver state"]
[2025/07/02 05:52:54.462 +00:00] [INFO] [resolver/resolver_with_discoverer.go:199] ["update resolver done"] [component=grpc-resolver] [scheme=channel-assignment]
[2025/07/02 05:52:54.468 +00:00] [INFO] [sessionutil/session_util.go:956] ["register session success"] [role=mixcoord] [key=by-dev/meta/session/mixcoord]
[2025/07/02 05:52:54.501 +00:00] [WARN] [lazygrpc/conn.go:67] ["async dial failed, wait for retry..."] [error="context deadline exceeded"]
[2025/07/02 05:52:54.507 +00:00] [WARN] [lazygrpc/conn.go:67] ["async dial failed, wait for retry..."] [error="context deadline exceeded"]
[2025/07/02 05:52:54.512 +00:00] [WARN] [grpcclient/client.go:494] ["grpc client is nil, maybe fail to get client in the retry state"] [client_role=mixcoord] [error="empty grpc client: find no available mixcoord, check mixcoord state"] [errorVerbose="empty grpc client: find no available mixcoord, check mixcoord state\n(1) attached stack trace\n -- stack trace:\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).call.func2\n | \t/workspace/source/internal/util/grpcclient/client.go:493\n | [...repeated from below...]\nWraps: (2) empty grpc client\nWraps: (3) attached stack trace\n -- stack trace:\n | github.com/milvus-io/milvus/internal/distributed/mixcoord/client.(*Client).getCompatibleMixCoordAddr\n | \t/workspace/source/internal/distributed/mixcoord/client/client.go:145\n | github.com/milvus-io/milvus/internal/distributed/mixcoord/client.(*Client).getMixCoordAddr\n | \t/workspace/source/internal/distributed/mixcoord/client/client.go:120\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).connect\n | \t/workspace/source/internal/util/grpcclient/client.go:260\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).GetGrpcClient\n | \t/workspace/source/internal/util/grpcclient/client.go:226\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).call.func1\n | \t/workspace/source/internal/util/grpcclient/client.go:478\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).call.func2\n | \t/workspace/source/internal/util/grpcclient/client.go:495\n | github.com/milvus-io/milvus/pkg/v2/util/retry.Handle\n | \t/workspace/source/pkg/util/retry/retry.go:145\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).call\n | \t/workspace/source/internal/util/grpcclient/client.go:486\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).Call\n | \t/workspace/source/internal/util/grpcclient/client.go:573\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).ReCall\n | \t/workspace/source/internal/util/grpcclient/client.go:589\n | github.com/milvus-io/milvus/internal/distributed/mixcoord/client.wrapGrpcCall[...]\n | \t/workspace/source/internal/distributed/mixcoord/client/client.go:158\n | github.com/milvus-io/milvus/internal/distributed/mixcoord/client.(*Client).GetComponentStates\n | \t/workspace/source/internal/distributed/mixcoord/client/client.go:172\n | github.com/milvus-io/milvus/internal/util/componentutil.WaitForComponentStates[...].func1\n | \t/workspace/source/internal/util/componentutil/componentutil.go:39\n | github.com/milvus-io/milvus/pkg/v2/util/retry.Do\n | \t/workspace/source/pkg/util/retry/retry.go:54\n | github.com/milvus-io/milvus/internal/util/componentutil.WaitForComponentStates[...]\n | \t/workspace/source/internal/util/componentutil/componentutil.go:64\n | github.com/milvus-io/milvus/internal/util/componentutil.WaitForComponentHealthy[...]\n | \t/workspace/source/internal/util/componentutil/componentutil.go:85\n | github.com/milvus-io/milvus/internal/distributed/proxy.(*Server).init\n | \t/workspace/source/internal/distributed/proxy/service.go:483\n | github.com/milvus-io/milvus/internal/distributed/proxy.(*Server).Run\n | \t/workspace/source/internal/distributed/proxy/service.go:409\n | github.com/milvus-io/milvus/cmd/components.(*Proxy).Run\n | \t/workspace/source/cmd/components/proxy.go:60\n | github.com/milvus-io/milvus/cmd/roles.runComponent[...].func1\n | \t/workspace/source/cmd/roles/roles.go:130\n | runtime.goexit\n | \t/usr/local/go/src/runtime/asm_amd64.s:1700\nWraps: (4) find no available mixcoord, check mixcoord state\nError types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *withstack.withStack (4) *errutil.leafError"]
[2025/07/02 05:52:54.514 +00:00] [WARN] [grpcclient/client.go:494] ["grpc client is nil, maybe fail to get client in the retry state"] [client_role=mixcoord] [error="empty grpc client: find no available mixcoord, check mixcoord state"] [errorVerbose="empty grpc client: find no available mixcoord, check mixcoord state\n(1) attached stack trace\n -- stack trace:\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).call.func2\n | \t/workspace/source/internal/util/grpcclient/client.go:493\n | [...repeated from below...]\nWraps: (2) empty grpc client\nWraps: (3) attached stack trace\n -- stack trace:\n | github.com/milvus-io/milvus/internal/distributed/mixcoord/client.(*Client).getCompatibleMixCoordAddr\n | \t/workspace/source/internal/distributed/mixcoord/client/client.go:145\n | github.com/milvus-io/milvus/internal/distributed/mixcoord/client.(*Client).getMixCoordAddr\n | \t/workspace/source/internal/distributed/mixcoord/client/client.go:120\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).connect\n | \t/workspace/source/internal/util/grpcclient/client.go:260\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).GetGrpcClient\n | \t/workspace/source/internal/util/grpcclient/client.go:226\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).call.func1\n | \t/workspace/source/internal/util/grpcclient/client.go:478\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).call.func2\n | \t/workspace/source/internal/util/grpcclient/client.go:495\n | github.com/milvus-io/milvus/pkg/v2/util/retry.Handle\n | \t/workspace/source/pkg/util/retry/retry.go:145\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).call\n | \t/workspace/source/internal/util/grpcclient/client.go:486\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).Call\n | \t/workspace/source/internal/util/grpcclient/client.go:573\n | github.com/milvus-io/milvus/internal/util/grpcclient.(*ClientBase[...]).ReCall\n | \t/workspace/source/internal/util/grpcclient/client.go:589\n | github.com/milvus-io/milvus/internal/distributed/mixcoord/client.wrapGrpcCall[...]\n | \t/workspace/source/internal/distributed/mixcoord/client/client.go:158\n | github.com/milvus-io/milvus/internal/distributed/mixcoord/client.(*Client).GetComponentStates\n | \t/workspace/source/internal/distributed/mixcoord/client/client.go:172\n | github.com/milvus-io/milvus/internal/util/componentutil.WaitForComponentStates[...].func1\n | \t/workspace/source/internal/util/componentutil/componentutil.go:39\n | github.com/milvus-io/milvus/pkg/v2/util/retry.Do\n | \t/workspace/source/pkg/util/retry/retry.go:54\n | github.com/milvus-io/milvus/internal/util/componentutil.WaitForComponentStates[...]\n | \t/workspace/source/internal/util/componentutil/componentutil.go:64\n | github.com/milvus-io/milvus/internal/util/componentutil.WaitForComponentHealthy[...]\n | \t/workspace/source/internal/util/componentutil/componentutil.go:85\n | github.com/milvus-io/milvus/internal/distributed/streamingnode.(*Server).initMixCoord.func1.1\n | \t/workspace/source/internal/distributed/streamingnode/service.go:305\n | github.com/milvus-io/milvus/pkg/v2/util/retry.Do\n | \t/workspace/source/pkg/util/retry/retry.go:54\n | github.com/milvus-io/milvus/internal/distributed/streamingnode.(*Server).initMixCoord.func1\n | \t/workspace/source/internal/distributed/streamingnode/service.go:297\n | runtime.goexit\n | \t/usr/local/go/src/runtime/asm_amd64.s:1700\nWraps: (4) find no available mixcoord, check mixcoord state\nError types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *withstack.withStack (4) *errutil.leafError"]
[2025/07/02 05:52:54.575 +00:00] [INFO] [resolver/resolver_with_discoverer.go:157] ["new grpc resolver registered"] [component=grpc-resolver] [scheme=channel-assignment] [id=4]
[2025/07/02 05:52:54.575 +00:00] [WARN] [resolver/watch_based_grpc_resolver.go:54] ["fail to update resolver state"] [component=grpc-resolver] [scheme=channel-assignment] [id=4] [state="{"Addresses":[],"Endpoints":null,"ServiceConfig":null,"Attributes":null}"] [error="bad resolver state"]
[2025/07/02 05:52:54.582 +00:00] [INFO] [resolver/resolver_with_discoverer.go:157] ["new grpc resolver registered"] [component=grpc-resolver] [scheme=milvus-session] [role=by-dev/meta/session/streamingnode] [exclusive=false] [id=5]
[2025/07/02 05:52:54.582 +00:00] [WARN] [resolver/watch_based_grpc_resolver.go:54] ["fail to update resolver state"] [component=grpc-resolver] [scheme=milvus-session] [role=by-dev/meta/session/streamingnode] [exclusive=false] [id=5] [state="{"Addresses":[],"Endpoints":null,"ServiceConfig":null,"Attributes":null}"] [error="bad resolver state"]
[2025/07/02 05:52:54.616 +00:00] [INFO] [streamingnode/service.go:208] ["init StreamingNode server finished"]
[2025/07/02 05:52:54.616 +00:00] [INFO] [streamingnode/service.go:128] ["streamingnode init done ..."]
[2025/07/02 05:52:54.616 +00:00] [INFO] [datanode/data_node.go:279] ["init datanode done"] [role=datanode] [nodeID=4] [Address=172.21.0.4:21124]
[2025/07/02 05:52:54.616 +00:00] [INFO] [datanode/service.go:285] ["current DataNode state"] [state=Initializing]
[2025/07/02 05:52:54.616 +00:00] [INFO] [datanode/service.go:186] ["DataNode gRPC services successfully initialized"]
[2025/07/02 05:52:54.616 +00:00] [INFO] [datanode/data_node.go:333] ["start id allocator done"] [role=datanode]
[2025/07/02 05:52:54.616 +00:00] [INFO] [importv2/scheduler.go:53] ["start import scheduler"]
I20250702 05:52:54.619335 47 MinioChunkManager.cpp:225] [SERVER][PreCheck][milvus][]start to precheck chunk manager with configuration: [address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]
[2025/07/02 05:52:54.619 +00:00] [INFO] [datacoord/server.go:846] ["received datanode register"] [address=172.21.0.4:21124] [serverID=4]
[2025/07/02 05:52:54.619 +00:00] [INFO] [datacoord/channel_manager.go:197] ["register node"] ["registered node"=4]
[2025/07/02 05:52:54.619 +00:00] [INFO] [sessionutil/session_util.go:506] ["put session key into etcd"] [key=by-dev/meta/session/datanode-4] [value="{"ServerID":4,"ServerName":"datanode","Address":"172.21.0.4:21124","TriggerKill":true,"Version":"2.6.0-rc.1","IndexEngineVersion":{},"ScalarIndexEngineVersion":{},"LeaseID":7587887839481911612,"HostName":"fe274fd7d7aa"}"]
[2025/07/02 05:52:54.619 +00:00] [INFO] [session/node_manager.go:64] ["adding node..."] [nodeID=4] [address=172.21.0.4:21124]
[2025/07/02 05:52:54.619 +00:00] [INFO] [sessionutil/session_util.go:516] ["Service registered successfully"] [ServerName=datanode] [serverID=4]
[2025/07/02 05:52:54.619 +00:00] [INFO] [datanode/data_node.go:197] ["DataNode Register Finished"]
[2025/07/02 05:52:54.620 +00:00] [INFO] [session/node_manager.go:76] ["node added"] [nodeID=4] [address=172.21.0.4:21124] [numNodes=1]
[2025/07/02 05:52:54.621 +00:00] [INFO] [datanode/service.go:191] ["DataNode gRPC services successfully started"]
[2025/07/02 05:52:54.621 +00:00] [INFO] [components/data_node.go:63] ["Datanode successfully started"]
W20250702 05:52:54.622398 47 MinioChunkManager.h:76] [SERVER][ThrowS3Error][milvus][]Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck]
[2025/07/02 05:52:54.622 +00:00] [WARN] [initcore/init_core.go:321] ["InitRemoteChunkManagerSingleton failed, C Runtime Exception: [UnknownError] precheck chunk manager client failed, error:Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck], configuration:[address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]\n"]
[2025/07/02 05:52:54.622 +00:00] [ERROR] [querynodev2/server.go:499] ["QueryNode init segcore failed"] [error="[UnknownError] precheck chunk manager client failed, error:Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck], configuration:[address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]"] [errorVerbose="[UnknownError] precheck chunk manager client failed, error:Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck], configuration:[address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]\n(1) attached stack trace\n -- stack trace:\n | github.com/milvus-io/milvus/internal/util/initcore.HandleCStatus\n | \t/workspace/source/internal/util/initcore/init_core.go:322\n | github.com/milvus-io/milvus/internal/util/initcore.InitRemoteChunkManager\n | \t/workspace/source/internal/util/initcore/init_core.go:238\n | github.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).InitSegcore\n | \t/workspace/source/internal/querynodev2/server.go:276\n | github.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).Init.func1\n | \t/workspace/source/internal/querynodev2/server.go:497\n | sync.(*Once).doSlow\n | \t/usr/local/go/src/sync/once.go:78\n | sync.(*Once).Do\n | \t/usr/local/go/src/sync/once.go:69\n | github.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).Init\n | \t/workspace/source/internal/querynodev2/server.go:416\n | github.com/milvus-io/milvus/internal/distributed/querynode.(*Server).init\n | \t/workspace/source/internal/distributed/querynode/service.go:144\n | github.com/milvus-io/milvus/internal/distributed/querynode.(*Server).Run\n | \t/workspace/source/internal/distributed/querynode/service.go:227\n | github.com/milvus-io/milvus/cmd/components.(*QueryNode).Run\n | \t/workspace/source/cmd/components/query_node.go:59\n | github.com/milvus-io/milvus/cmd/roles.runComponent[...].func1\n | \t/workspace/source/cmd/roles/roles.go:130\n | runtime.goexit\n | \t/usr/local/go/src/runtime/asm_amd64.s:1700\nWraps: (2) [UnknownError] precheck chunk manager client failed, error:Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck], configuration:[address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]\nError types: (1) *withstack.withStack (2) *errutil.leafError"] [stack="github.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).Init.func1\n\t/workspace/source/internal/querynodev2/server.go:499\nsync.(*Once).doSlow\n\t/usr/local/go/src/sync/once.go:78\nsync.(*Once).Do\n\t/usr/local/go/src/sync/once.go:69\ngithub.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).Init\n\t/workspace/source/internal/querynodev2/server.go:416\ngithub.com/milvus-io/milvus/internal/distributed/querynode.(*Server).init\n\t/workspace/source/internal/distributed/querynode/service.go:144\ngithub.com/milvus-io/milvus/internal/distributed/querynode.(*Server).Run\n\t/workspace/source/internal/distributed/querynode/service.go:227\ngithub.com/milvus-io/milvus/cmd/components.(*QueryNode).Run\n\t/workspace/source/cmd/components/query_node.go:59\ngithub.com/milvus-io/milvus/cmd/roles.runComponent[...].func1\n\t/workspace/source/cmd/roles/roles.go:130"]
[2025/07/02 05:52:54.623 +00:00] [ERROR] [querynode/service.go:145] ["QueryNode init error: "] [error="[UnknownError] precheck chunk manager client failed, error:Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck], configuration:[address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]"] [errorVerbose="[UnknownError] precheck chunk manager client failed, error:Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck], configuration:[address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]\n(1) attached stack trace\n -- stack trace:\n | github.com/milvus-io/milvus/internal/util/initcore.HandleCStatus\n | \t/workspace/source/internal/util/initcore/init_core.go:322\n | github.com/milvus-io/milvus/internal/util/initcore.InitRemoteChunkManager\n | \t/workspace/source/internal/util/initcore/init_core.go:238\n | github.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).InitSegcore\n | \t/workspace/source/internal/querynodev2/server.go:276\n | github.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).Init.func1\n | \t/workspace/source/internal/querynodev2/server.go:497\n | sync.(*Once).doSlow\n | \t/usr/local/go/src/sync/once.go:78\n | sync.(*Once).Do\n | \t/usr/local/go/src/sync/once.go:69\n | github.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).Init\n | \t/workspace/source/internal/querynodev2/server.go:416\n | github.com/milvus-io/milvus/internal/distributed/querynode.(*Server).init\n | \t/workspace/source/internal/distributed/querynode/service.go:144\n | github.com/milvus-io/milvus/internal/distributed/querynode.(*Server).Run\n | \t/workspace/source/internal/distributed/querynode/service.go:227\n | github.com/milvus-io/milvus/cmd/components.(*QueryNode).Run\n | \t/workspace/source/cmd/components/query_node.go:59\n | github.com/milvus-io/milvus/cmd/roles.runComponent[...].func1\n | \t/workspace/source/cmd/roles/roles.go:130\n | runtime.goexit\n | \t/usr/local/go/src/runtime/asm_amd64.s:1700\nWraps: (2) [UnknownError] precheck chunk manager client failed, error:Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck], configuration:[address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]\nError types: (1) *withstack.withStack (2) *errutil.leafError"] [stack="github.com/milvus-io/milvus/internal/distributed/querynode.(*Server).init\n\t/workspace/source/internal/distributed/querynode/service.go:145\ngithub.com/milvus-io/milvus/internal/distributed/querynode.(*Server).Run\n\t/workspace/source/internal/distributed/querynode/service.go:227\ngithub.com/milvus-io/milvus/cmd/components.(*QueryNode).Run\n\t/workspace/source/cmd/components/query_node.go:59\ngithub.com/milvus-io/milvus/cmd/roles.runComponent[...].func1\n\t/workspace/source/cmd/roles/roles.go:130"]
[2025/07/02 05:52:54.623 +00:00] [ERROR] [components/query_node.go:60] ["QueryNode starts error"] [error="[UnknownError] precheck chunk manager client failed, error:Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck], configuration:[address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]"] [errorVerbose="[UnknownError] precheck chunk manager client failed, error:Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck], configuration:[address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]\n(1) attached stack trace\n -- stack trace:\n | github.com/milvus-io/milvus/internal/util/initcore.HandleCStatus\n | \t/workspace/source/internal/util/initcore/init_core.go:322\n | github.com/milvus-io/milvus/internal/util/initcore.InitRemoteChunkManager\n | \t/workspace/source/internal/util/initcore/init_core.go:238\n | github.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).InitSegcore\n | \t/workspace/source/internal/querynodev2/server.go:276\n | github.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).Init.func1\n | \t/workspace/source/internal/querynodev2/server.go:497\n | sync.(*Once).doSlow\n | \t/usr/local/go/src/sync/once.go:78\n | sync.(*Once).Do\n | \t/usr/local/go/src/sync/once.go:69\n | github.com/milvus-io/milvus/internal/querynodev2.(*QueryNode).Init\n | \t/workspace/source/internal/querynodev2/server.go:416\n | github.com/milvus-io/milvus/internal/distributed/querynode.(*Server).init\n | \t/workspace/source/internal/distributed/querynode/service.go:144\n | github.com/milvus-io/milvus/internal/distributed/querynode.(*Server).Run\n | \t/workspace/source/internal/distributed/querynode/service.go:227\n | github.com/milvus-io/milvus/cmd/components.(*QueryNode).Run\n | \t/workspace/source/cmd/components/query_node.go:59\n | github.com/milvus-io/milvus/cmd/roles.runComponent[...].func1\n | \t/workspace/source/cmd/roles/roles.go:130\n | runtime.goexit\n | \t/usr/local/go/src/runtime/asm_amd64.s:1700\nWraps: (2) [UnknownError] precheck chunk manager client failed, error:Error in ListObjects[errcode:400, exception:AuthorizationQueryParametersError, errmessage:Unable to parse ExceptionName: AuthorizationQueryParametersError Message: Error parsing the X-Amz-Credential parameter; incorrect date format. This date in the credential must be in the format "yyyyMMdd"., params:params, bucket=a-bucket, prefix=justforconnectioncheck], configuration:[address=minio:9000, bucket_name=a-bucket, root_path=files, storage_type=remote, cloud_provider=aws, iam_endpoint=, log_level=fatal, region=, useSSL=false, sslCACert=19, useIAM=false, useVirtualHost=false, requestTimeoutMs=10000, gcp_native_without_auth=false]\nError types: (1) *withstack.withStack (2) *errutil.leafError"] [stack="github.com/milvus-io/milvus/cmd/components.(*QueryNode).Run\n\t/workspace/source/cmd/components/query_node.go:60\ngithub.com/milvus-io/milvus/cmd/roles.runComponent[...].func1\n\t/workspace/source/cmd/roles/roles.go:130"]

Anything else?

No response

Metadata

Metadata

Labels

kind/bugIssues or changes related a bugtriage/acceptedIndicates an issue or PR is ready to be actively worked on.

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions