From 653d9ecf918311dfd2aec254790d86b86953ce3a Mon Sep 17 00:00:00 2001 From: Xiaofan <83447078+xiaofan-luan@users.noreply.github.com> Date: Wed, 29 Mar 2023 17:08:04 +0800 Subject: [PATCH] Change RocksMQ page size to 64M (#23078) Signed-off-by: xiaofan-luan --- internal/util/paramtable/service_param.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/util/paramtable/service_param.go b/internal/util/paramtable/service_param.go index 18572888c1..a44045c399 100644 --- a/internal/util/paramtable/service_param.go +++ b/internal/util/paramtable/service_param.go @@ -582,7 +582,7 @@ please adjust in embedded Milvus: /tmp/milvus/rdb_data`, r.PageSize = ParamItem{ Key: "rocksmq.rocksmqPageSize", - DefaultValue: strconv.FormatInt(256<<20, 10), + DefaultValue: strconv.FormatInt(64<<20, 10), Version: "2.0.0", Doc: "256 MB, 256 * 1024 * 1024 bytes, The size of each page of messages in rocksmq", Export: true,