File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed
experiments/configurations Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 26
26
DATASET_TO_ENGINE["laion-small-clip"]="qdrant-continuous-benchmark"
27
27
DATASET_TO_ENGINE["msmarco-sparse-100K"]="qdrant-sparse-vector"
28
28
DATASET_TO_ENGINE["h-and-m-2048-angular-filters"]="qdrant-continuous-benchmark"
29
+ DATASET_TO_ENGINE["dbpedia-openai-1M-1536-angular"]="qdrant-bq-continuous-benchmark"
29
30
30
31
for dataset in "${!DATASET_TO_ENGINE[@]}"; do
31
32
export ENGINE_NAME=${DATASET_TO_ENGINE[$dataset]}
Original file line number Diff line number Diff line change 10
10
dataset :
11
11
description : " Dataset to benchmark"
12
12
default : laion-small-clip
13
+ engine_config :
14
+ description : " Engine config to benchmark"
15
+ default : qdrant-continuous-benchmark
13
16
14
17
jobs :
15
18
runManualBenchmark :
27
30
export POSTGRES_HOST=${{ secrets.POSTGRES_HOST }}
28
31
export QDRANT_VERSION=${{ inputs.qdrant_version }}
29
32
export DATASETS=${{ inputs.dataset }}
33
+ export ENGINE_NAME=${{ inputs.engine_config }}
30
34
export POSTGRES_TABLE=benchmark_manual
31
35
bash -x tools/setup_ci.sh
32
36
bash -x tools/run_ci.sh
Original file line number Diff line number Diff line change 45
45
],
46
46
"upload_params" : { "parallel" : 16 , "batch_size" : 1024 }
47
47
},
48
+ {
49
+ "name" : " qdrant-bq-continuous-benchmark" ,
50
+ "engine" : " qdrant" ,
51
+ "connection_params" : { "timeout" : 30 },
52
+ "collection_params" : {
53
+ "hnsw_config" : {
54
+ "m" : 32 ,
55
+ "ef_construct" : 256
56
+ },
57
+ "quantization_config" : { "binary" : {"always_ram" : true } },
58
+ "optimizers_config" : {
59
+ "max_segment_size" : 1000000 ,
60
+ "default_segment_number" : 3 ,
61
+ "memmap_threshold" : 10000000
62
+ }
63
+ },
64
+ "search_params" : [
65
+ {
66
+ "parallel" : 8 ,
67
+ "config" : {
68
+ "hnsw_ef" : 256 ,
69
+ "quantization" : { "rescore" : true , "oversampling" : 2.0 }
70
+ }
71
+ }
72
+ ],
73
+ "upload_params" : { "parallel" : 16 , "batch_size" : 1024 }
74
+ },
48
75
{
49
76
"name" : " qdrant-sparse-vector" ,
50
77
"engine" : " qdrant" ,
You can’t perform that action at this time.
0 commit comments