You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If this option is set, service will try to prevent creation of large unoptimized segments.
311
-
// When enabled, updates may be blocked at request level if there are unoptimized segments larger than indexing threshold.
312
-
// Updates will be resumed when optimization is completed and segments are optimized below the threshold.
313
-
// Using this option may lead to increased delay between submitting an update and its application.
311
+
// If enabled, the service will try to prevent the creation of large unoptimized segments.
312
+
// When enabled, new points written to segments larger than the indexing threshold are stored
313
+
// as "deferred points": they are persisted in the WAL and segments, but excluded from
314
+
// read/search results until the corresponding segments are optimized (e.g. indexed,
315
+
// quantized, or moved to mmap storage).
316
+
// Update requests with wait=true will only return after the deferred points become visible,
317
+
// which may significantly increase the perceived latency between submitting an update and its
318
+
// completion. Update requests with wait=false are not affected.
314
319
// Default is disabled.
315
320
optionalboolprevent_unoptimized=10;
316
321
}
@@ -445,6 +450,9 @@ message StrictModeConfig {
445
450
// Reject memory-consuming update operations when process resident memory exceeds this percentage of total RAM (cgroup-aware, 1-100).
446
451
// Delete-style operations are still allowed so memory can be freed.
447
452
optionaluint32max_resident_memory_percent=21;
453
+
// Reject disk-consuming update operations when the filesystem hosting Qdrant storage exceeds this percentage of total capacity (1-100).
454
+
// Free space is sampled with a small TTL cache so the gate may take a few seconds to react. Delete-style operations are still allowed so disk can be freed.
/// Reject disk-consuming update operations when the filesystem hosting Qdrant storage exceeds this percentage of total capacity (1-100).
906
+
/// Free space is sampled with a small TTL cache so the gate may take a few seconds to react. Delete-style operations are still allowed so disk can be freed.
0 commit comments