mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-05 17:40:55 -05:00
* Add magic all flag, if set all features will be enabled * Report enabled feature flags on start, if any is enabled * Remove pub visibility from all, add comment it's only applied on init * Don't check all flag in is_empty
34 lines
674 B
YAML
34 lines
674 B
YAML
log_level: DEBUG
|
|
|
|
feature_flags:
|
|
all: true
|
|
|
|
inference:
|
|
address: "http://localhost:2114/api/v1/infer"
|
|
timeout: 10
|
|
token: "98eb568c-dea5-4347-a3a5-583478983bb9"
|
|
|
|
service:
|
|
host: 127.0.0.1
|
|
http_port: 6333
|
|
# Uncomment to enable gRPC:
|
|
#grpc_port: 6334
|
|
#api_key: your_secret_api_key_here
|
|
|
|
cluster:
|
|
resharding_enabled: true
|
|
|
|
storage:
|
|
performance:
|
|
# Number of parallel threads used for search operations. If 0 - auto selection.
|
|
max_search_threads: 4
|
|
|
|
optimizers:
|
|
# Minimum interval between forced flushes.
|
|
flush_interval_sec: 5
|
|
|
|
# Do not create too much segments in dev
|
|
default_segment_number: 2
|
|
|
|
handle_collection_load_errors: true
|