Skip to content

Commit

Permalink
Update Weaviate 1.26.1 & weaviate-client==4.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cococo2000 committed Aug 2, 2024
1 parent 1f26132 commit cf92846
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions .github/workflows/bvb-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- bruteforce
- dummy_algo
- milvus
# - milvus_gpu # GPU support is not available in the free tier
- qdrant
- weaviate

Expand Down
4 changes: 2 additions & 2 deletions bigvectorbench/algorithms/weaviate/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM bigvectorbench

RUN pip install weaviate-client==4.6.1
RUN pip install weaviate-client==4.7.1
RUN python3 -c "from weaviate import Client"

# RUN curl -o docker-compose.yml "https://configuration.weaviate.io/v2/docker-compose/docker-compose.yml?modules=standalone&runtime=docker-compose&weaviate_version=v1.24.12&weaviate_volume=no-volume"
# RUN curl -o docker-compose.yml "https://configuration.weaviate.io/v2/docker-compose/docker-compose.yml?modules=standalone&runtime=docker-compose&weaviate_version=v1.26.1&weaviate_volume=no-volume"
COPY bigvectorbench/algorithms/weaviate/docker-compose.yml ./
20 changes: 10 additions & 10 deletions bigvectorbench/algorithms/weaviate/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Description: Docker compose file for Weaviate
# curl -o docker-compose.yml "https://configuration.weaviate.io/v2/docker-compose/docker-compose.yml?modules=standalone&runtime=docker-compose&weaviate_version=v1.24.12&weaviate_volume=no-volume"
# curl -o docker-compose.yml "https://configuration.weaviate.io/v2/docker-compose/docker-compose.yml?modules=standalone&runtime=docker-compose&weaviate_version=v1.26.1&weaviate_volume=no-volume"
---
services:
weaviate:
command:
- --host
- 0.0.0.0
- --port
- '8080'
- --scheme
- http
image: cr.weaviate.io/semitechnologies/weaviate:1.24.12
- --host
- 0.0.0.0
- --port
- '8080'
- --scheme
- http
image: cr.weaviate.io/semitechnologies/weaviate:1.26.1
ports:
- 8080:8080
- 50051:50051
- 8080:8080
- 50051:50051
restart: on-failure:0
environment:
QUERY_DEFAULTS_LIMIT: 25
Expand Down

0 comments on commit cf92846

Please sign in to comment.