Skip to content

Commit

Permalink
up patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
generall committed Mar 16, 2024
1 parent c334232 commit f112b6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion engine/clients/qdrant/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def recreate(self, dataset: Dataset, collection_params):
self.client.update_collection(
collection_name=QDRANT_COLLECTION_NAME,
optimizer_config=rest.OptimizersConfigDiff(
indexing_threshold=10000000,
# indexing_threshold=10000000,
max_optimization_threads=0,
),
)
for field_name, field_type in dataset.config.schema.items():
Expand Down
3 changes: 2 additions & 1 deletion engine/clients/qdrant/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ def post_upload(cls, _distance):
cls.client.update_collection(
collection_name=QDRANT_COLLECTION_NAME,
optimizer_config=OptimizersConfigDiff(
indexing_threshold=10_000,
# indexing_threshold=10_000,
max_optimization_threads=1,
),
)

Expand Down
2 changes: 1 addition & 1 deletion engine/servers/qdrant-single-node/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
qdrant_bench:
image: ${CONTAINER_REGISTRY:-docker.io}/qdrant/qdrant:v1.8.1
image: ${CONTAINER_REGISTRY:-docker.io}/qdrant/qdrant:v1.8.2
network_mode: host
logging:
driver: "json-file"
Expand Down

0 comments on commit f112b6b

Please sign in to comment.