From 8b2b0d412c19aeca2b257bdf79ecac37ae4b709e Mon Sep 17 00:00:00 2001 From: shaoyue Date: Thu, 30 Nov 2023 11:34:27 +0800 Subject: [PATCH] enhance: storeageType default value change to remote (#28792) /kind enhancement /cc @PowderLi Signed-off-by: shaoyue.chen --- configs/milvus.yaml | 2 +- pkg/util/paramtable/component_param.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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)