mirror of https://github.com/milvus-io/milvus.git
Change RocksMQ page size to 256M (#22433)
Signed-off-by: xiaofan-luan <xiaofan.luan@zilliz.com>pull/22454/head
parent
926607b519
commit
91d251ab48
|
@ -120,7 +120,7 @@ kafka:
|
|||
rocksmq:
|
||||
# please adjust in embedded Milvus: /tmp/milvus/rdb_data
|
||||
path: /var/lib/milvus/rdb_data # The path where the message is stored in rocksmq
|
||||
rocksmqPageSize: 2147483648 # 2 GB, 2 * 1024 * 1024 * 1024 bytes, The size of each page of messages in rocksmq
|
||||
rocksmqPageSize: 268435456 # 256 MB, 256 * 1024 * 1024 bytes, The size of each page of messages in rocksmq
|
||||
retentionTimeInMinutes: 7200 # 5 days, 5 * 24 * 60 minutes, The retention time of the message in rocksmq.
|
||||
retentionSizeInMB: 8192 # 8 GB, 8 * 1024 MB, The retention size of the message in rocksmq.
|
||||
compactionInterval: 86400 # 1 day, trigger rocksdb compaction every day to remove deleted data
|
||||
|
|
Loading…
Reference in New Issue