Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.

Commit 1090206

Browse files
authored
Enable quota and limits in helm (#378)
Signed-off-by: bigsheeper <yihao.dai@zilliz.com> Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
1 parent 06d1f30 commit 1090206

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

charts/milvus/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: milvus
33
appVersion: "2.1.4"
44
kubeVersion: "^1.10.0-0"
55
description: Milvus is an open-source vector database built to power AI applications and vector similarity search.
6-
version: 3.2.10
6+
version: 3.2.11
77
keywords:
88
- milvus
99
- elastic

charts/milvus/values.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,16 @@ heaptrack:
164164
## Configuration for Milvus quota and limits.
165165
# By default, we enable:
166166
# 1. TT protection;
167-
# 2. Memory protection.
167+
# 2. Memory protection;
168+
# 3. Disk quota protection;
168169
# You can enable:
169170
# 1. DML throughput limitation;
170171
# 2. DDL, DQL qps/rps limitation;
171172
# 3. DQL Queue length/latency protection;
173+
# 4. DQL result rate protection;
172174
# If necessary, you can also manually force to deny RW requests.
173175
quotaAndLimits:
174-
enabled: false # `true` to enable quota and limits, `false` to disable.
176+
enabled: true # `true` to enable quota and limits, `false` to disable.
175177

176178
# quotaCenterCollectInterval is the time interval that quotaCenter
177179
# collects metrics from Proxies, Query cluster and Data cluster.
@@ -236,7 +238,7 @@ quotaAndLimits:
236238
diskProtection:
237239
# When the total file size of object storage is greater than `diskQuota`, all dml requests would be rejected;
238240
enabled: true
239-
diskQuota: -1 # GB, (0, +inf), default no limit
241+
diskQuota: -1 # MB, (0, +inf), default no limit
240242

241243
# limitReading decides whether dql requests are allowed.
242244
limitReading:

0 commit comments

Comments
 (0)