Skip to content

Commit

Permalink
fix: Inconsistent Weaviate config (#111)
Browse files Browse the repository at this point in the history
* fix: Inconsistent Weaviate config

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
KShivendu and pre-commit-ci[bot] authored Mar 18, 2024
1 parent c22f3fc commit c9e439f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions experiments/configurations/qdrant-vs-weaviate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[
{
{
"name": "proposed-config-qdrant-bq-latency",
"engine": "qdrant",
"connection_params": { "timeout": 60 },
Expand Down Expand Up @@ -27,7 +27,7 @@
"connection_params": { "timeout": 60 },
"collection_params": {
"quantization_config": { "binary": { "always_ram": true } },
"optimizers_config": {
"optimizers_config": {
"max_segment_size": 100000000,
"default_segment_number":2
},
Expand Down
4 changes: 2 additions & 2 deletions experiments/configurations/weaviate-single-node.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"collection_params": { "vectorIndexConfig": { "efConstruction": 256, "maxConnections": 16 } },
"search_params": [
{ "parallel": 8, "vectorIndexConfig": { "ef": 64} }, { "parallel": 8, "vectorIndexConfig": { "ef": 128} }, { "parallel": 8, "vectorIndexConfig": { "ef": 256} }, { "parallel": 8, "vectorIndexConfig": { "ef": 512} }, { "parallel": 8, "vectorIndexConfig": { "ef": 768} }, { "parallel": 8, "vectorIndexConfig": { "ef": 1024} }, { "parallel": 8, "vectorIndexConfig": { "ef": 1536} }
{ "parallel": 8, "vectorIndexConfig": { "ef": 128 } }
],
"upload_params": { "batch_size": 1024, "parallel": 8 }
},
Expand Down Expand Up @@ -87,6 +87,6 @@
{ "parallel": 1, "vectorIndexConfig": { "ef": 64} }, { "parallel": 1, "vectorIndexConfig": { "ef": 128} }, { "parallel": 1, "vectorIndexConfig": { "ef": 256} }, { "parallel": 1, "vectorIndexConfig": { "ef": 512} },
{ "parallel": 100, "vectorIndexConfig": { "ef": 64} }, { "parallel": 100, "vectorIndexConfig": { "ef": 128} }, { "parallel": 100, "vectorIndexConfig": { "ef": 256} }, { "parallel": 100, "vectorIndexConfig": { "ef": 512} }
],
"upload_params": { "batch_size": 10240, "parallel": 1 }
"upload_params": { "batch_size": 1024, "parallel": 8 }
}
]

0 comments on commit c9e439f

Please sign in to comment.