mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 03:48:37 +08:00
fix: Change l0SegmentsRowCount limits to a reasonable value (#36014)
See also: #36028 Signed-off-by: yangxuan <xuan.yang@zilliz.com>
This commit is contained in:
parent
d9c8d1ea90
commit
f31264c02c
@ -981,8 +981,8 @@ quotaAndLimits:
|
||||
diskQuotaPerPartition: -1 # MB, (0, +inf), default no limit
|
||||
l0SegmentsRowCountProtection:
|
||||
enabled: false # switch to enable l0 segment row count quota
|
||||
lowWaterLevel: 32768 # l0 segment row count quota, low water level
|
||||
highWaterLevel: 65536 # l0 segment row count quota, low water level
|
||||
lowWaterLevel: 30000000 # l0 segment row count quota, low water level
|
||||
highWaterLevel: 50000000 # l0 segment row count quota, high water level
|
||||
deleteBufferRowCountProtection:
|
||||
enabled: false # switch to enable delete buffer row count quota
|
||||
lowWaterLevel: 32768 # delete buffer row count quota, low water level
|
||||
|
@ -1897,7 +1897,7 @@ but the rate will not be lower than minRateRatio * dmlRate.`,
|
||||
p.L0SegmentRowCountLowWaterLevel = ParamItem{
|
||||
Key: "quotaAndLimits.limitWriting.l0SegmentsRowCountProtection.lowWaterLevel",
|
||||
Version: "2.4.7",
|
||||
DefaultValue: "32768",
|
||||
DefaultValue: "30000000",
|
||||
Doc: "l0 segment row count quota, low water level",
|
||||
Export: true,
|
||||
}
|
||||
@ -1906,8 +1906,8 @@ but the rate will not be lower than minRateRatio * dmlRate.`,
|
||||
p.L0SegmentRowCountHighWaterLevel = ParamItem{
|
||||
Key: "quotaAndLimits.limitWriting.l0SegmentsRowCountProtection.highWaterLevel",
|
||||
Version: "2.4.7",
|
||||
DefaultValue: "65536",
|
||||
Doc: "l0 segment row count quota, low water level",
|
||||
DefaultValue: "50000000",
|
||||
Doc: "l0 segment row count quota, high water level",
|
||||
Export: true,
|
||||
}
|
||||
p.L0SegmentRowCountHighWaterLevel.Init(base.mgr)
|
||||
|
Loading…
Reference in New Issue
Block a user