Skip to content

Commit 4a05e13

Browse files
authored
add plan runner mode (#92)
1 parent 3620cca commit 4a05e13

File tree

4 files changed

+824
-28
lines changed

4 files changed

+824
-28
lines changed

benchmarker/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
queries.json
22
benchmarker
33
venv/
4+
plan.yml
5+
results_archive/
6+
__pycache__/

benchmarker/plan.yml.example

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
path_to_weaviate_repo: ../../weaviate/
2+
control_branch: stable/v1.34
3+
candidate_branch: rescore_reuse_consistent_view
4+
global_parameters:
5+
- -v=~/Downloads/dbpedia-100k-openai-ada002-euclidean.hdf5
6+
- -d=l2-squared
7+
- --queryDuration=1
8+
runs:
9+
- name: OpenAI 100k PQ
10+
ingest_on: control # one of control, candidate
11+
async_indexing: false
12+
parameters:
13+
- --pq=enabled
14+
- --indexType=hnsw
15+
- name: OpenAI 100k RQ8
16+
ingest_on: control # one of control, candidate
17+
async_indexing: true
18+
parameters:
19+
- --rq=auto
20+
- --indexType=hnsw
21+
# - name: OpenAI 100k PQ Named Vector
22+
# ingest_on: candidate # one of control, candidate
23+
# async_indexing: false
24+
# parameters:
25+
# - --pq=enabled
26+
# - --indexType=hnsw
27+
# - --namedVector=my_vector
28+
29+

0 commit comments

Comments
 (0)