@@ -150,16 +150,17 @@ storage:
150
150
# region: ""
151
151
# access_key: ""
152
152
# secret_key: ""
153
- # endpoint_url: ""
154
153
155
154
# Where to store temporary files
156
155
# If null, temporary snapshots are stored in: storage/snapshots_temp/
157
156
temp_path : null
158
157
159
- # If true - the point's payload will not be stored in memory.
158
+ # If true - point payloads will not be stored in memory.
160
159
# It will be read from the disk every time it is requested.
161
160
# This setting saves RAM by (slightly) increasing the response time.
162
161
# Note: those payload values that are involved in filtering and are indexed - remain in RAM.
162
+ #
163
+ # Default: true
163
164
on_disk_payload : true
164
165
165
166
# Maximum number of concurrent updates to shard replicas
@@ -247,12 +248,12 @@ storage:
247
248
max_segment_size_kb : null
248
249
249
250
# Maximum size (in KiloBytes) of vectors to store in-memory per segment.
250
- # Segments larger than this threshold will be stored as read-only memmaped file.
251
+ # Segments larger than this threshold will be stored as read-only memmapped file.
251
252
# To enable memmap storage, lower the threshold
252
253
# Note: 1Kb = 1 vector of size 256
253
254
# To explicitly disable mmap optimization, set to `0`.
254
- # If not set, will be disabled by default. Previously this was called memmap_threshold_kb.
255
- memmap_threshold : null
255
+ # If not set, will be disabled by default.
256
+ memmap_threshold_kb : null
256
257
257
258
# Maximum size (in KiloBytes) of vectors allowed for plain index.
258
259
# Default value based on https://github.com/google-research/google-research/blob/master/scann/docs/algorithms.md
@@ -277,7 +278,7 @@ storage:
277
278
# vacuum_min_vector_number: 1000
278
279
# default_segment_number: 0
279
280
# max_segment_size_kb: null
280
- # memmap_threshold : null
281
+ # memmap_threshold_kb : null
281
282
# indexing_threshold_kb: 20000
282
283
# flush_interval_sec: 5
283
284
# max_optimization_threads: null
@@ -441,7 +442,6 @@ cluster:
441
442
442
443
# Set to true to prevent service from sending usage statistics to the developers.
443
444
# Read more: https://qdrant.tech/documentation/guides/telemetry
444
- # Defaults: false
445
445
telemetry_disabled : false
446
446
447
447
# TLS configuration.
0 commit comments