Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/continuous-benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
DATASET_TO_ENGINE["laion-small-clip"]="qdrant-continuous-benchmark"
DATASET_TO_ENGINE["msmarco-sparse-100K"]="qdrant-sparse-vector"
DATASET_TO_ENGINE["h-and-m-2048-angular-filters"]="qdrant-continuous-benchmark"
DATASET_TO_ENGINE["dbpedia-openai-1M-1536-angular"]="qdrant-bq-continuous-benchmark"

for dataset in "${!DATASET_TO_ENGINE[@]}"; do
export ENGINE_NAME=${DATASET_TO_ENGINE[$dataset]}
Expand Down
27 changes: 27 additions & 0 deletions experiments/configurations/qdrant-single-node.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,33 @@
],
"upload_params": { "parallel": 16, "batch_size": 1024 }
},
{
"name": "qdrant-bq-continuous-benchmark",
"engine": "qdrant",
"connection_params": { "timeout": 30 },
"collection_params": {
"hnsw_config": {
"m": 32,
"ef_construct": 256
},
"quantization_config": { "binary": {"always_ram": true} },
"optimizers_config": {
"max_segment_size": 1000000,
"default_segment_number": 3,
"memmap_threshold": 10000000
}
},
"search_params": [
{
"parallel": 8,
"config": {
"hnsw_ef": 256,
"quantization": { "rescore": true, "oversampling": 2.0 }
}
}
],
"upload_params": { "parallel": 16, "batch_size": 1024 }
},
{
"name": "qdrant-sparse-vector",
"engine": "qdrant",
Expand Down