@@ -179,38 +179,38 @@ quotaAndLimits:
179
179
180
180
ddl : # ddl limit rates, default no limit.
181
181
enabled : false
182
- collectionRate : # qps, default no limit, rate for CreateCollection, DropCollection, LoadCollection, ReleaseCollection
183
- partitionRate : # qps, default no limit, rate for CreatePartition, DropPartition, LoadPartition, ReleasePartition
182
+ collectionRate : -1 # qps, default no limit, rate for CreateCollection, DropCollection, LoadCollection, ReleaseCollection
183
+ partitionRate : -1 # qps, default no limit, rate for CreatePartition, DropPartition, LoadPartition, ReleasePartition
184
184
185
185
indexRate :
186
186
enabled : false
187
- max : # qps, default no limit, rate for CreateIndex, DropIndex
187
+ max : -1 # qps, default no limit, rate for CreateIndex, DropIndex
188
188
flushRate :
189
189
enabled : false
190
- max : # qps, default no limit, rate for flush
190
+ max : -1 # qps, default no limit, rate for flush
191
191
compactionRate :
192
192
enabled : false
193
- max : # qps, default no limit, rate for manualCompaction
193
+ max : -1 # qps, default no limit, rate for manualCompaction
194
194
195
195
# dml limit rates, default no limit.
196
196
# The maximum rate will not be greater than `max`.
197
197
dml :
198
198
enabled : false
199
199
insertRate :
200
- max : # MB/s, default no limit
200
+ max : -1 # MB/s, default no limit
201
201
deleteRate :
202
- max : # MB/s, default no limit
202
+ max : -1 # MB/s, default no limit
203
203
bulkLoadRate : # not support yet. TODO: limit bulkLoad rate
204
- max : # MB/s, default no limit
204
+ max : -1 # MB/s, default no limit
205
205
206
206
# dql limit rates, default no limit.
207
207
# The maximum rate will not be greater than `max`.
208
208
dql :
209
209
enabled : false
210
210
searchRate :
211
- max : # vps (vectors per second), default no limit
211
+ max : -1 # vps (vectors per second), default no limit
212
212
queryRate :
213
- max : # qps, default no limit
213
+ max : -1 # qps, default no limit
214
214
215
215
# limitWriting decides whether dml requests are allowed.
216
216
limitWriting :
@@ -233,6 +233,10 @@ quotaAndLimits:
233
233
dataNodeMemoryHighWaterLevel : 0.95 # (0, 1], memoryHighWaterLevel in DataNodes
234
234
queryNodeMemoryLowWaterLevel : 0.85 # (0, 1], memoryLowWaterLevel in QueryNodes
235
235
queryNodeMemoryHighWaterLevel : 0.95 # (0, 1], memoryHighWaterLevel in QueryNodes
236
+ diskProtection :
237
+ # When the total file size of object storage is greater than `diskQuota`, all dml requests would be rejected;
238
+ enabled : true
239
+ diskQuota : -1 # GB, (0, +inf), default no limit
236
240
237
241
# limitReading decides whether dql requests are allowed.
238
242
limitReading :
@@ -245,16 +249,23 @@ quotaAndLimits:
245
249
# nqInQueueThreshold indicated that the system was under backpressure for Search/Query path.
246
250
# If NQ in any QueryNode's queue is greater than nqInQueueThreshold, search&query rates would gradually cool off
247
251
# until the NQ in queue no longer exceeds nqInQueueThreshold. We think of the NQ of query request as 1.
248
- nqInQueueThreshold : # int, default no limit
252
+ nqInQueueThreshold : -1 # int, default no limit
249
253
250
254
# queueLatencyThreshold indicated that the system was under backpressure for Search/Query path.
251
255
# If dql latency of queuing is greater than queueLatencyThreshold, search&query rates would gradually cool off
252
256
# until the latency of queuing no longer exceeds queueLatencyThreshold.
253
257
# The latency here refers to the averaged latency over a period of time.
254
- queueLatencyThreshold : # milliseconds, default no limit
258
+ queueLatencyThreshold : -1 # milliseconds, default no limit
259
+
260
+ resultProtection :
261
+ enabled : false
262
+ # maxReadResultRate indicated that the system was under backpressure for Search/Query path.
263
+ # If dql result rate is greater than maxReadResultRate, search&query rates would gradually cool off
264
+ # until the read result rate no longer exceeds maxReadResultRate.
265
+ maxReadResultRate : -1 # MB/s, default no limit
255
266
256
- # coolOffSpeed is the speed of search&query rates cool off.
257
- coolOffSpeed : 0.9 # (0, 1]
267
+ # coolOffSpeed is the speed of search&query rates cool off.
268
+ coolOffSpeed : 0.9 # (0, 1]
258
269
259
270
standalone :
260
271
replicas : 1 # Run standalone mode with replication disabled
0 commit comments