diff --git a/configs/milvus.yaml b/configs/milvus.yaml index f5afac2e87..e45fbbdcf6 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -530,7 +530,7 @@ common: BeamWidthRatio: 4 gracefulTime: 5000 # milliseconds. it represents the interval (in ms) by which the request arrival time needs to be subtracted in the case of Bounded Consistency. gracefulStopTimeout: 1800 # seconds. it will force quit the server if the graceful stop process is not completed during this time. - storageType: minio # please adjust in embedded Milvus: local + storageType: remote # please adjust in embedded Milvus: local, available values are [local, remote, opendal], value minio is deprecated, use remote instead # Default value: auto # Valid values: [auto, avx512, avx2, avx, sse4_2] # This configuration is only used by querynode and indexnode, it selects CPU instruction set for Searching and Index-building. diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index a2b3078722..cc5e9026d7 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -489,8 +489,8 @@ This configuration is only used by querynode and indexnode, it selects CPU instr p.StorageType = ParamItem{ Key: "common.storageType", Version: "2.0.0", - DefaultValue: "minio", - Doc: "please adjust in embedded Milvus: local, available values are [local, minio, remote, opendal]]", + DefaultValue: "remote", + Doc: "please adjust in embedded Milvus: local, available values are [local, remote, opendal], value minio is deprecated, use remote instead", Export: true, } p.StorageType.Init(base.mgr)